Skip to content

Commit 2d94e2e

Browse files
committed
release: 0.2.4
1 parent 657f22c commit 2d94e2e

56 files changed

Lines changed: 114 additions & 71 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Changes

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
- version: 0.2.4
2+
date: Tue Sep 16 11:59:33 AM PDT 2025
3+
changes:
4+
- python: Fix Makefile for new uv usage
5+
- nodejs: Remove Makefile dep on nvm
6+
- make: Print titles before tests
7+
- make: Time tests
8+
- nodejs: NodeJS binding works with node 24.8.0
9+
- nodejs: Add test-node-versions.mk for testing versions
10+
- nodejs: Enforce NodeJS version restrictions
11+
- make: Don't support YS_MAKES_LOCAL, since Docker
12+
- make: Fix locale in common/ubuntu.dockerfile
13+
- doc: Update ReadMe.md files
14+
- lua: Fix isolate teardown segfault issue on macOS
15+
- python: Makefile fix for 'clean' target
16+
- doc: Updates for ys::std IPC functions docs
117
- version: 0.2.3
218
date: Tue Sep 9 02:31:36 PM PDT 2025
319
changes:

Meta

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: YAMLScript
2-
version: 0.2.3
2+
version: 0.2.4
33
abstract: Program in YAML — Code is Data
44
homepage: https://yamlscript.org
55
license: mit

blog/2023-12-05.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ $ ys --help
109109
It should display:
110110

111111
```text
112-
ys - The YS Command Line Tool - v0.2.3
112+
ys - The YS Command Line Tool - v0.2.4
113113
114114
Usage: ys [<option...>] [<file>]
115115

blog/2023-12-07.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ Reminder, here's the quick way to install the latest version:
2525
$ curl https://yamlscript.org/install | PREFIX=~/.ys bash
2626
$ export PATH=$HOME/.ys/bin:$PATH
2727
$ ys --version
28-
YS (YAMLScript) v0.2.3
28+
YS (YAMLScript) v0.2.4
2929
```
3030

3131
The best first command to run is `ys --help`:
3232

3333
```bash
3434
$ ys --help
3535

36-
ys - The YS Command Line Tool - v0.2.3
36+
ys - The YS Command Line Tool - v0.2.4
3737

3838
Usage: ys [<option...>] [<file>]
3939

blog/2025-06-21.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Once you have `ys` installed, try:
5151
```bash
5252
$ ys
5353

54-
ys - The YS Command Line Tool - v0.2.3
54+
ys - The YS Command Line Tool - v0.2.4
5555

5656
Usage: ys [<option...>] [<file>]
5757

clojure/deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
org.clojure/data.json {:mvn/version "2.4.0"},
55
org.json/json {:mvn/version "20240205"},
66
net.java.dev.jna/jna {:mvn/version "5.14.0"},
7-
org.yamlscript/yamlscript {:mvn/version "0.2.3"}}}
7+
org.yamlscript/yamlscript {:mvn/version "0.2.4"}}}

clojure/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
;; This code is licensed under MIT license (See License for details)
22
;; Copyright 2023-2025 Ingy dot Net
33

4-
(defproject org.yamlscript/clj-yamlscript "0.2.3"
4+
(defproject org.yamlscript/clj-yamlscript "0.2.4"
55
:description
66
"YAMLScript is a functional programming language whose syntax is encoded in
77
YAML."
@@ -23,7 +23,7 @@
2323
[org.clojure/data.json "2.4.0"]
2424
[org.json/json "20240205"]
2525
[net.java.dev.jna/jna "5.14.0"]
26-
[org.yamlscript/yamlscript "0.2.3"]]
26+
[org.yamlscript/yamlscript "0.2.4"]]
2727

2828
:deploy-repositories
2929
[["releases"

common/install.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SHELL := bash
33
ROOT := $(shell \
44
cd '$(abspath $(dir $(lastword $(MAKEFILE_LIST))))' && pwd -P)
55

6-
YAMLSCRIPT_VERSION := 0.2.3
6+
YAMLSCRIPT_VERSION := 0.2.4
77

88
YS := $(wildcard ys)
99
LIBYS := $(firstword $(wildcard libys.*))

common/release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ $ curl https://getys.org/ys | bash
1414
See [Installing YS](https://yamlscript.org/doc/install/) for more detailed information about installing YS things.
1515

1616

17-
## Changes in YS version 0.2.3
17+
## Changes in YS version 0.2.4
1818

core/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
;; This code is licensed under MIT license (See License for details)
22
;; Copyright 2023-2025 Ingy dot Net
33

4-
(defproject yamlscript/core "0.2.3"
4+
(defproject yamlscript/core "0.2.4"
55
:description "Program in YAML — Code is Data"
66

77
:url "https://github.com/yaml/yamlscript"

0 commit comments

Comments
 (0)