diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2026-05-23 22:18:38 -0400 |
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2026-05-23 22:18:38 -0400 |
| commit | 113688dac23f8f98163672c2c31fe7ab33a0a698 (patch) | |
| tree | 8df76b9401842ed9c22533b43793cf7d72defc2c | |
| parent | org files out of sync, fix (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 51788d1..bd1cd98 100755 --- a/derivation.nix +++ b/derivation.nix @@ -88,7 +88,7 @@ with ( ); mkDubDerivation rec { pname = "spine"; - version = "0.20.0"; + version = "0.21.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.20.0", + "version": "0.21.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.20.0"; + version = "0.21.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.20.0 base dev shell, ldc-1.42.0, dub-1.40.0 - dtools-2.110.0"; + # "spine-0.21.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.20.0 base dev shell, dmd-2.111.0, dub-1.40.0 - dtools-2.110.0"; + # "spine-0.21.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.20.0 base dev shell, ldc-1.42.0, dub-1.40.0 - dtools-2.110.0"; + # "spine-0.21.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.20.0; git tag -f sisudoc-spine_v$$\{DRV} -m\"doc-reform sisudoc spine-$$\{DRV}\" HEAD"; \ - echo "git tag -f sisudoc-spine_v0.20.0 -m\"doc-reform sisudoc spine-0.20.0\" HEAD" + 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" .PHONY : all build rebuild release \ distclean init \ diff --git a/meson.build b/meson.build index 8d86994..426c30d 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('spine', 'd', license: 'AGPL-3', - version: '0.20.0', + version: '0.21.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 6c3cf65..6d09151 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 -20 +21 #+END_SRC *** patch diff --git a/package.nix b/package.nix index 915b2ef..3423e9f 100644 --- a/package.nix +++ b/package.nix @@ -27,7 +27,7 @@ }: stdenv.mkDerivation { pname = "spine"; - version = "0.20.0"; + version = "0.21.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.20.0 (rev: ${rev})" + echo "❯❯ spine-v0.21.0 (rev: ${rev})" $out/bin/spine -v ''; meta = { diff --git a/views/version.txt b/views/version.txt index 37a3a21..99ce9c1 100644 --- a/views/version.txt +++ b/views/version.txt @@ -4,7 +4,7 @@ struct Version { int minor; int patch; } -enum _ver = Version(0, 20, 0); +enum _ver = Version(0, 21, 0); version (Posix) { version (DigitalMars) { } else version (LDC) { |
