diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2026-05-24 15:51:54 -0400 |
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2026-05-24 15:51:54 -0400 |
| commit | 66022e4ae7206721140565f6a6e42209518094da (patch) | |
| tree | ec8ee8b82bc1603a364710deea50da60a9e3d099 | |
| parent | decouple abstraction phase2: dub sub-package split (diff) | |
| -rwxr-xr-x | derivation.nix | 2 | ||||
| -rw-r--r-- | dub.json | 2 | ||||
| -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 |
8 files changed, 13 insertions, 13 deletions
diff --git a/derivation.nix b/derivation.nix index bd1cd98..593e0db 100755 --- a/derivation.nix +++ b/derivation.nix @@ -88,7 +88,7 @@ with ( ); mkDubDerivation rec { pname = "spine"; - version = "0.21.0"; + version = "0.22.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.21.0", + "version": "0.22.0", "description": "an object-centric sisu-like document parser", "homepage": "https://sisudoc.org", "license": "AGPL-3.0+", @@ -7,7 +7,7 @@ ... }@inputs: let pname = "spine"; - version = "0.21.0"; + version = "0.22.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.21.0 base dev shell, ldc-1.42.0, dub-1.40.0 - dtools-2.110.0"; + # "spine-0.22.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.21.0 base dev shell, dmd-2.111.0, dub-1.40.0 - dtools-2.110.0"; + # "spine-0.22.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.21.0 base dev shell, ldc-1.42.0, dub-1.40.0 - dtools-2.110.0"; + # "spine-0.22.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.21.0; git tag -f sisudoc-spine_v$$\{DRV} -m\"doc-reform sisudoc spine-$$\{DRV}\" HEAD"; \ - echo "git tag -f sisudoc-spine_v0.21.0 -m\"doc-reform sisudoc spine-0.21.0\" HEAD" + echo "DRV=0.22.0; git tag -f sisudoc-spine_v$$\{DRV} -m\"doc-reform sisudoc spine-$$\{DRV}\" HEAD"; \ + echo "git tag -f sisudoc-spine_v0.22.0 -m\"doc-reform sisudoc spine-0.22.0\" HEAD" .PHONY : all build rebuild release \ distclean init \ diff --git a/meson.build b/meson.build index 426c30d..ad11749 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('spine', 'd', license: 'AGPL-3', - version: '0.21.0', + version: '0.22.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 6d09151..dc3c339 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 -21 +22 #+END_SRC *** patch diff --git a/package.nix b/package.nix index 3423e9f..d0beef9 100644 --- a/package.nix +++ b/package.nix @@ -27,7 +27,7 @@ }: stdenv.mkDerivation { pname = "spine"; - version = "0.21.0"; + version = "0.22.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.21.0 (rev: ${rev})" + echo "❯❯ spine-v0.22.0 (rev: ${rev})" $out/bin/spine -v ''; meta = { diff --git a/views/version.txt b/views/version.txt index 99ce9c1..3e8e2a9 100644 --- a/views/version.txt +++ b/views/version.txt @@ -4,7 +4,7 @@ struct Version { int minor; int patch; } -enum _ver = Version(0, 21, 0); +enum _ver = Version(0, 22, 0); version (Posix) { version (DigitalMars) { } else version (LDC) { |
