diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2026-04-21 17:04:49 -0400 |
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2026-04-22 20:42:31 -0400 |
| commit | ad1c13a8590b146f900b6937cecdd243f766429d (patch) | |
| tree | 44e7a6d48482d2c99c4d0446264e9375d6d1760f | |
| parent | upkeep, update a few paths (diff) | |
| -rwxr-xr-x | derivation.nix | 2 | ||||
| -rw-r--r-- | dub.json | 2 | ||||
| -rw-r--r-- | dub_describe.json | 8 | ||||
| -rw-r--r-- | flake.nix | 8 | ||||
| -rw-r--r-- | makefile | 4 | ||||
| -rw-r--r-- | meson.build | 2 | ||||
| -rw-r--r-- | org/sisudoc_spine_version_info_and_doc_header_including_copyright_and_license.org | 2 | ||||
| -rw-r--r-- | package.nix | 4 | ||||
| -rw-r--r-- | views/version.txt | 2 |
9 files changed, 17 insertions, 17 deletions
diff --git a/derivation.nix b/derivation.nix index 7e95843..f7bcad7 100755 --- a/derivation.nix +++ b/derivation.nix @@ -88,7 +88,7 @@ with ( ); mkDubDerivation rec { pname = "spine"; - version = "0.18.0"; + version = "0.19.0"; src = ./.; nativeBuildInputs = with pkgs; [dub ldc]; buildInputs = with pkgs; [nixVersions.latest sqlite]; @@ -4,7 +4,7 @@ ], "copyright": "Copyright © 2015 - 2026 Ralph Amissah", "name": "spine", - "version": "0.18.0", + "version": "0.19.0", "description": "an object-centric sisu-like document parser", "homepage": "https://sisudoc.org", "license": "AGPL-3.0+", diff --git a/dub_describe.json b/dub_describe.json index 93612c1..5f597af 100644 --- a/dub_describe.json +++ b/dub_describe.json @@ -14,7 +14,7 @@ { "path": "./", "name": "spine", - "version": "0.18.0", + "version": "0.19.0", "description": "an object-centric sisu-like document parser", "homepage": "https://sisudoc.org", "authors": [ @@ -295,7 +295,7 @@ { "path": "./", "name": "spine:d2sqlite3", - "version": "0.18.0", + "version": "0.19.0", "description": "A thin wrapper around SQLite 3", "homepage": "https://github.com/dlang-community/d2sqlite3", "authors": [ @@ -397,7 +397,7 @@ { "path": "./", "name": "spine:dyaml", - "version": "0.18.0", + "version": "0.19.0", "description": "YAML parser and emitter", "homepage": "https://github.com/dlang-community/D-YAML", "authors": [ @@ -577,7 +577,7 @@ { "path": "./", "name": "spine:imageformats", - "version": "0.18.0", + "version": "0.19.0", "description": "Decoders for PNG, TGA, BMP, JPEG and encoders for PNG, TGA, BMP.", "homepage": "", "authors": [ @@ -7,7 +7,7 @@ ... }@inputs: let pname = "spine"; - version = "0.18.0"; + version = "0.19.0"; supportedSystems = ["x86_64-linux"]; # [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; forAllSystems = nixpkgs.lib.genAttrs supportedSystems; nixpkgsFor = forAllSystems (system: import nixpkgs {inherit system;}); # nixpkgs instantiated for supported system types @@ -143,7 +143,7 @@ #default = import ./shell.nix {pkgs = pkgs-nix; flake = self;}; dsh-overlay = mkDevShell { pkgs = pkgs-ovl; - # "spine-0.18.0 base dev shell, ldc-1.42.0, dub-1.40.0 - dtools-2.110.0"; + # "spine-0.19.0 base dev shell, ldc-1.42.0, dub-1.40.0 - dtools-2.110.0"; name = "spine-${version} dev shell (overlay ldc)"; compiler = pkgs-ovl.ldc; }; @@ -161,13 +161,13 @@ }; dsh-overlay-dmd = mkDevShell { pkgs = pkgs-ovl; - # "spine-0.18.0 base dev shell, dmd-2.111.0, dub-1.40.0 - dtools-2.110.0"; + # "spine-0.19.0 base dev shell, dmd-2.111.0, dub-1.40.0 - dtools-2.110.0"; name = "spine-${version} dev shell (overlay dmd)"; compiler = pkgs-ovl.dmd; }; dsh-overlay-ldc = mkDevShell { pkgs = pkgs-ovl; - # "spine-0.18.0 base dev shell, ldc-1.42.0, dub-1.40.0 - dtools-2.110.0"; + # "spine-0.19.0 base dev shell, ldc-1.42.0, dub-1.40.0 - dtools-2.110.0"; name = "spine-${version} dev shell (overlay ldc)"; compiler = pkgs-ovl.ldc; }; @@ -1301,8 +1301,8 @@ gitsnapshot: distclean tangle git commit -a version_tag: - echo "DRV=0.18.0; git tag -f sisudoc-spine_v$$\{DRV} -m\"doc-reform sisudoc spine-$$\{DRV}\" HEAD"; \ - echo "git tag -f sisudoc-spine_v0.18.0 -m\"doc-reform sisudoc spine-0.18.0\" HEAD" + echo "DRV=0.19.0; git tag -f sisudoc-spine_v$$\{DRV} -m\"doc-reform sisudoc spine-$$\{DRV}\" HEAD"; \ + echo "git tag -f sisudoc-spine_v0.19.0 -m\"doc-reform sisudoc spine-0.19.0\" HEAD" .PHONY : all build rebuild release \ distclean init \ diff --git a/meson.build b/meson.build index 6ebe0dc..e0432d0 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('spine', 'd', license: 'AGPL-3', - version: '0.18.0', + version: '0.19.0', meson_version: '>=0.46' ) #if meson.get_compiler('d').get_id() == 'gcc' diff --git a/org/sisudoc_spine_version_info_and_doc_header_including_copyright_and_license.org b/org/sisudoc_spine_version_info_and_doc_header_including_copyright_and_license.org index a4e8254..8473590 100644 --- a/org/sisudoc_spine_version_info_and_doc_header_including_copyright_and_license.org +++ b/org/sisudoc_spine_version_info_and_doc_header_including_copyright_and_license.org @@ -98,7 +98,7 @@ #+NAME: spine_project_version_part_minor #+BEGIN_SRC org -18 +19 #+END_SRC *** patch diff --git a/package.nix b/package.nix index 548d215..5aac02d 100644 --- a/package.nix +++ b/package.nix @@ -27,7 +27,7 @@ }: stdenv.mkDerivation { pname = "spine"; - version = "0.18.0"; + version = "0.19.0"; src = lib.cleanSource ./.; buildInputs = [ sqlite ]; nativeBuildInputs = [ dub compilerPkg gnumake ]; @@ -57,7 +57,7 @@ stdenv.mkDerivation { ''; postInstall = '' echo `ls -la $out/bin/spine` - echo "❯❯ spine-v0.18.0 (rev: ${rev})" + echo "❯❯ spine-v0.19.0 (rev: ${rev})" $out/bin/spine -v ''; meta = { diff --git a/views/version.txt b/views/version.txt index 9782cfa..7056ca1 100644 --- a/views/version.txt +++ b/views/version.txt @@ -4,7 +4,7 @@ struct Version { int minor; int patch; } -enum _ver = Version(0, 18, 0); +enum _ver = Version(0, 19, 0); version (Posix) { version (DigitalMars) { } else version (LDC) { |
