Skip to content

Commit

Permalink
release: 0.1.44
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Mar 18, 2024
1 parent 9c76a52 commit 6e6dfd0
Show file tree
Hide file tree
Showing 40 changed files with 69 additions and 46 deletions.
2 changes: 1 addition & 1 deletion .profile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ys-local() {
YS() (
set -e
base=$YAMLSCRIPT_ROOT/ys
libyamlscript_version=0.1.43
libyamlscript_version=0.1.44
jar=yamlscript.cli-$libyamlscript_version-SNAPSHOT-standalone.jar
make --no-print-directory -C "$base" jar
java -jar "$base/target/uberjar/$jar" "$@"
Expand Down
2 changes: 1 addition & 1 deletion .version.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Used by util/version-bump to update versions in repo

v_api=0.1.43
v_api=0.1.44

v_perl=$v_api
v_python=$v_api
Expand Down
7 changes: 7 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@

- version: 0.1.44
date: Mon Mar 18 08:14:24 AM PDT 2024
changes:
- make: Change reference to yamlscript-java to yamlscript
- make: Refactor 'make release'
- ys: Fix for --binary compilation

- version: 0.1.43
date: Sun Mar 17 03:34:47 PM PDT 2024
changes:
Expand Down
2 changes: 1 addition & 1 deletion Meta
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
=meta: 0.0.2

name: YAMLScript
version: 0.1.43
version: 0.1.44
abstract: Program in YAML
homepage: https://yamlscript.org
license: mit
Expand Down
2 changes: 1 addition & 1 deletion ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ Make sure `~/.local/bin` is in your `PATH` environment variable.
You can use the following environment variables to control the installation:

* `PREFIX=...` - The directory to install to. Default: `~/.local`
* `VERSION=...` - The YAMLScript version to install. Default: `0.1.43`
* `VERSION=...` - The YAMLScript version to install. Default: `0.1.44`
* `BIN=1` - Only install the `PREFIX/bin/ys` command line tool.
* `LIB=1` - Only install the `PREFIX/lib/libyamlscript` shared library.
* `DEBUG=1` - Print the Bash commands that are being run.
Expand Down
2 changes: 1 addition & 1 deletion clojure/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
org.clojure/data.json {:mvn/version "2.4.0"},
org.json/json {:mvn/version "20240205"},
net.java.dev.jna/jna {:mvn/version "5.14.0"},
org.yamlscript/yamlscript {:mvn/version "0.1.43"}}}
org.yamlscript/yamlscript {:mvn/version "0.1.44"}}}
4 changes: 2 additions & 2 deletions clojure/project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;; This code is licensed under MIT license (See License for details)
;; Copyright 2023-2024 Ingy dot Net

(defproject org.yamlscript/clj-yamlscript "0.1.43"
(defproject org.yamlscript/clj-yamlscript "0.1.44"
:description
"YAMLScript is a functional programming language whose syntax is encoded in
YAML."
Expand All @@ -23,7 +23,7 @@
[org.clojure/data.json "2.4.0"]
[org.json/json "20240205"]
[net.java.dev.jna/jna "5.14.0"]
[org.yamlscript/yamlscript "0.1.43"]]
[org.yamlscript/yamlscript "0.1.44"]]

:deploy-repositories
[["releases"
Expand Down
2 changes: 1 addition & 1 deletion common/install.mk
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ SHELL := bash
ROOT := $(shell \
cd '$(abspath $(dir $(lastword $(MAKEFILE_LIST))))' && pwd -P)

YAMLSCRIPT_VERSION := 0.1.43
YAMLSCRIPT_VERSION := 0.1.44

YS := $(wildcard ys)
LIBYAMLSCRIPT := $(firstword $(wildcard libyamlscript.*))
Expand Down
2 changes: 1 addition & 1 deletion common/project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;; This code is licensed under MIT license (See License for details)
;; Copyright 2023-2024 Ingy dot Net

(defproject yamlscript/docker "0.1.43"
(defproject yamlscript/docker "0.1.44"
:description "Program in YAML"
:dependencies
[#__
Expand Down
2 changes: 1 addition & 1 deletion core/project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;; This code is licensed under MIT license (See License for details)
;; Copyright 2023-2024 Ingy dot Net

(defproject yamlscript/core "0.1.43"
(defproject yamlscript/core "0.1.44"
:description "Program in YAML"

:url "https://github.com/yaml/yamlscript"
Expand Down
2 changes: 1 addition & 1 deletion core/src/yamlscript/runtime.clj
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
:refer [abspath
get-yspath]]))

(def ys-version "0.1.43")
(def ys-version "0.1.44")

(def ARGS (sci/new-dynamic-var 'ARGS))
(def ARGV (sci/new-dynamic-var 'ARGV))
Expand Down
2 changes: 1 addition & 1 deletion java/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ include ../common/base.mk
include $(COMMON)/binding.mk
include $(COMMON)/java.mk

YAMLSCRIPT_JAVA_JAR := target/yamlscript-0.1.43.jar
YAMLSCRIPT_JAVA_JAR := target/yamlscript-0.1.44.jar

#------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<artifactId>yamlscript</artifactId>

<version>0.1.43</version>
<version>0.1.44</version>

<name>yamlscript</name>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/
public class YAMLScript
{
public static String YAMLSCRIPT_VERSION = "0.1.43";
public static String YAMLSCRIPT_VERSION = "0.1.44";

public static Object load(String ysCode)
{
Expand Down
2 changes: 1 addition & 1 deletion libyamlscript/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{org.clojure/clojure {:mvn/version "1.11.1"},
org.babashka/sci {:mvn/version "0.8.40"},
org.clojure/data.json {:mvn/version "2.4.0"},
yamlscript/compiler {:mvn/version "0.1.43"}},
yamlscript/compiler {:mvn/version "0.1.44"}},
:aliases
{:lein2deps
{:deps
Expand Down
4 changes: 2 additions & 2 deletions libyamlscript/project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;; This code is licensed under MIT license (See License for details)
;; Copyright 2023-2024 Ingy dot Net

(defproject yamlscript/libyamlscript "0.1.43"
(defproject yamlscript/libyamlscript "0.1.44"
:description "Shared Library for YAMLScript"

:url "https://yamlscript.org"
Expand All @@ -20,7 +20,7 @@
[[org.clojure/clojure "1.11.1"]
[org.babashka/sci "0.8.41"]
[org.clojure/data.json "2.4.0"]
[yamlscript/core "0.1.43"]]
[yamlscript/core "0.1.44"]]

:plugins
[[lein-exec "0.3.7"]
Expand Down
6 changes: 6 additions & 0 deletions perl-alien/Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

---
version: 0.1.44
date: Mon Mar 18 08:14:24 AM PDT 2024
changes:
- libyamlscript 0.1.44

---
version: 0.1.43
date: Sun Mar 17 03:34:47 PM PDT 2024
Expand Down
2 changes: 1 addition & 1 deletion perl-alien/Meta
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
base: ../Meta

name: Alien-YAMLScript
version: 0.1.43
version: 0.1.44

language: perl

Expand Down
2 changes: 1 addition & 1 deletion perl-alien/alienfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use alienfile;

my $libyamlscript_version = '0.1.43';
my $libyamlscript_version = '0.1.44';

# Always use a share install
# We cannot use a system install, because we need to know exactly
Expand Down
4 changes: 2 additions & 2 deletions perl-alien/lib/Alien/YAMLScript.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ use warnings;

package Alien::YAMLScript;

our $VERSION = '0.1.43';
our $VERSION = '0.1.44';

use parent 'Alien::Base';

our $libyamlscript_version = '0.1.43';
our $libyamlscript_version = '0.1.44';

die "Alien::YAMLScript $VERSION requires libyamlscript $libyamlscript_version" .
"but you have " . __PACKAGE__->version
Expand Down
6 changes: 6 additions & 0 deletions perl/Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

---
version: 0.1.44
date: Mon Mar 18 08:14:24 AM PDT 2024
changes:
- libyamlscript 0.1.44

---
version: 0.1.43
date: Sun Mar 17 03:34:47 PM PDT 2024
Expand Down
4 changes: 2 additions & 2 deletions perl/Meta
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
base: ../Meta

name: YAMLScript
version: 0.1.43
version: 0.1.44

language: perl

Expand All @@ -12,7 +12,7 @@ author:

requires:
perl: 5.16.0
Alien::YAMLScript: 0.1.43
Alien::YAMLScript: 0.1.44
FFI::CheckLib: 0.31
FFI::Platypus: 2.08
Cpanel::JSON::XS: 4.37
Expand Down
4 changes: 2 additions & 2 deletions perl/lib/YAMLScript.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ use FFI::CheckLib ();
use FFI::Platypus;
use Cpanel::JSON::XS ();

our $VERSION = '0.1.43';
our $VERSION = '0.1.44';

our $libyamlscript_version = '0.1.43';
our $libyamlscript_version = '0.1.44';


#------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion python/lib/yamlscript/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# This value is automatically updated by 'make bump'.
# The version number is used to find the correct shared library file.
# We currently only support binding to an exact version of libyamlscript.
yamlscript_version = '0.1.43'
yamlscript_version = '0.1.44'

import os, sys
import ctypes
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = '0.1.43'
version = '0.1.44'

from setuptools import setup
import pathlib
Expand Down
2 changes: 1 addition & 1 deletion raku/META6.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ "api": 0
, "name": "YAMLScript"
, "version": "0.1.43"
, "version": "0.1.44"
, "description": "Program in YAML"
, "auth": "zef:ingy"
, "provides":
Expand Down
2 changes: 1 addition & 1 deletion raku/lib/YAMLScript.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ unit class YAMLScript;

use NativeCall;

constant YAMLSCRIPT_VERSION = v0.1.43;
constant YAMLSCRIPT_VERSION = v0.1.44;

sub from-j($t) { ::("Rakudo::Internals::JSON").from-json($t); }

Expand Down
4 changes: 4 additions & 0 deletions ruby/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [0.1.44] - 2024-03-18

- libyamlscript 0.1.44

## [0.1.43] - 2024-03-17

- libyamlscript 0.1.43
Expand Down
2 changes: 1 addition & 1 deletion ruby/lib/yamlscript.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class YAMLScript
# TODO: This value is automatically updated by 'make bump'.
# The version number is used to find the correct shared library file.
# We currently only support binding to an exact version of libyamlscript.
YAMLSCRIPT_VERSION = '0.1.43'
YAMLSCRIPT_VERSION = '0.1.44'

# A low-level interface to the native library
module LibYAMLScript
Expand Down
2 changes: 1 addition & 1 deletion ruby/lib/yamlscript/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

class YAMLScript
VERSION = "0.1.43"
VERSION = "0.1.44"
end
2 changes: 1 addition & 1 deletion rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yamlscript"
version = "0.1.43"
version = "0.1.44"
edition = "2021"
description = "Program in YAML"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ use serde::Deserialize;
use crate::error::LibYAMLScriptError;

/// The name of the yamlscript library to load.
const LIBYAMLSCRIPT_FILENAME: &str = "libyamlscript.so.0.1.43";
const LIBYAMLSCRIPT_FILENAME: &str = "libyamlscript.so.0.1.44";

/// A wrapper around libyamlscript.
pub struct YAMLScript {
Expand Down
8 changes: 4 additions & 4 deletions www/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ or:

```text
$ ys --version
YAMLScript 0.1.43
YAMLScript 0.1.44
```


Expand Down Expand Up @@ -255,9 +255,9 @@ For Python you would do:

```bash
$ pip install yamlscript
Successfully installed yamlscript-0.1.43
$ curl -sSL yamlscript.org/install | VERSION=0.1.43 install
Installed ~/.local/lib/libyamlscript.so - version 0.1.43
Successfully installed yamlscript-0.1.44
$ curl -sSL yamlscript.org/install | VERSION=0.1.44 install
Installed ~/.local/lib/libyamlscript.so - version 0.1.44
```

For some other language, use that language's library installer.
Expand Down
2 changes: 1 addition & 1 deletion www/src/install
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

set -e -u -o pipefail

LIBYAMLSCRIPT_VERSION=0.1.43
LIBYAMLSCRIPT_VERSION=0.1.44
VERSION=${VERSION:-$LIBYAMLSCRIPT_VERSION}
export VERSION

Expand Down
2 changes: 1 addition & 1 deletion ys/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
org.babashka/sci {:mvn/version "0.8.41"},
babashka/process {:mvn/version "0.5.21"},
clj-commons/clj-yaml {:mvn/version "1.0.27"},
yamlscript/core {:mvn/version "0.1.43"}},
yamlscript/core {:mvn/version "0.1.44"}},
:aliases
{:lein2deps
{:deps
Expand Down
4 changes: 2 additions & 2 deletions ys/project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;; This code is licensed under MIT license (See License for details)
;; Copyright 2023-2024 Ingy dot Net

(defproject yamlscript.cli "0.1.43-SNAPSHOT"
(defproject yamlscript.cli "0.1.44-SNAPSHOT"
:description "YAMLScript Command Line Tool"

:url "https://github.com/yaml/yamlscript"
Expand All @@ -24,7 +24,7 @@
[org.babashka/sci "0.8.41"]
[babashka/process "0.5.21"]
[clj-commons/clj-yaml "1.0.27"]
[yamlscript/core "0.1.43"]]
[yamlscript/core "0.1.44"]]

:main ^:skip-aot yamlscript.cli

Expand Down
2 changes: 1 addition & 1 deletion ys/share/ys-0.bash
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euo pipefail

[[ ${YS_SH_DEBUG-} ]] && set -x

yamlscript_version=0.1.43
yamlscript_version=0.1.44

main() (
setup "$@"
Expand Down
Loading

0 comments on commit 6e6dfd0

Please sign in to comment.