aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2026-09-22 09:56:22 -0400
committerRalph Amissah <ralph.amissah@gmail.com>2026-09-23 08:22:15 -0400
commitef4729e747ef82bdf798f20c50618c8942fad23e (patch)
tree7358e3254d03ad2ba1e873f3acf26ff4c6e10fed
parentocda: warn if heading claims reserved segment name (diff)
-rwxr-xr-xderivation.nix2
-rw-r--r--dub.json2
-rw-r--r--flake.nix8
-rw-r--r--makefile4
-rw-r--r--meson.build2
-rw-r--r--org/sisudoc_spine_version_info_and_doc_header_including_copyright_and_license.org4
-rw-r--r--package.nix4
-rw-r--r--views/version.txt2
8 files changed, 14 insertions, 14 deletions
diff --git a/derivation.nix b/derivation.nix
index 9b5e0ff..18dae74 100755
--- a/derivation.nix
+++ b/derivation.nix
@@ -88,7 +88,7 @@ with (
);
mkDubDerivation rec {
pname = "spine";
- version = "0.24.1";
+ version = "0.25.0";
src = ./.;
nativeBuildInputs = with pkgs; [dub ldc];
buildInputs = with pkgs; [nixVersions.latest sqlite zstd.out];
diff --git a/dub.json b/dub.json
index 6ca30dc..679cc39 100644
--- a/dub.json
+++ b/dub.json
@@ -4,7 +4,7 @@
],
"copyright": "Copyright © 2015 - 2026 Ralph Amissah",
"name": "spine",
- "version": "0.24.1",
+ "version": "0.25.0",
"description": "an object-centric sisu-like document parser",
"homepage": "https://sisudoc.org",
"license": "AGPL-3.0+",
diff --git a/flake.nix b/flake.nix
index 15474b3..6186c18 100644
--- a/flake.nix
+++ b/flake.nix
@@ -7,7 +7,7 @@
...
}@inputs: let
pname = "spine";
- version = "0.24.1";
+ version = "0.25.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
@@ -144,7 +144,7 @@
#default = import ./shell.nix {pkgs = pkgs-nix; flake = self;};
dsh-overlay = mkDevShell {
pkgs = pkgs-ovl;
- # "spine-0.24.1 base dev shell, ldc-1.43.0, dub-1.41.0 - dtools-2.112.1";
+ # "spine-0.25.0 base dev shell, ldc-1.43.0, dub-1.41.0 - dtools-2.112.1";
name = "spine-${version} dev shell (overlay ldc)";
compiler = pkgs-ovl.ldc;
};
@@ -162,13 +162,13 @@
};
dsh-overlay-dmd = mkDevShell {
pkgs = pkgs-ovl;
- # "spine-0.24.1 base dev shell, dmd-2.112.1, dub-1.41.0 - dtools-2.112.1";
+ # "spine-0.25.0 base dev shell, dmd-2.112.1, dub-1.41.0 - dtools-2.112.1";
name = "spine-${version} dev shell (overlay dmd)";
compiler = pkgs-ovl.dmd;
};
dsh-overlay-ldc = mkDevShell {
pkgs = pkgs-ovl;
- # "spine-0.24.1 base dev shell, ldc-1.43.0, dub-1.41.0 - dtools-2.112.1";
+ # "spine-0.25.0 base dev shell, ldc-1.43.0, dub-1.41.0 - dtools-2.112.1";
name = "spine-${version} dev shell (overlay ldc)";
compiler = pkgs-ovl.ldc;
};
diff --git a/makefile b/makefile
index 603f030..85e192f 100644
--- a/makefile
+++ b/makefile
@@ -1301,8 +1301,8 @@ gitsnapshot: distclean tangle
git commit -a
version_tag:
- echo "DRV=0.24.1; git tag -f sisudoc-spine_v$$\{DRV} -m\"doc-reform sisudoc spine-$$\{DRV}\" HEAD"; \
- echo "git tag -f sisudoc-spine_v0.24.1 -m\"doc-reform sisudoc spine-0.24.1\" HEAD"
+ echo "DRV=0.25.0; git tag -f sisudoc-spine_v$$\{DRV} -m\"doc-reform sisudoc spine-$$\{DRV}\" HEAD"; \
+ echo "git tag -f sisudoc-spine_v0.25.0 -m\"doc-reform sisudoc spine-0.25.0\" HEAD"
.PHONY : all build rebuild release \
distclean init \
diff --git a/meson.build b/meson.build
index 471af00..4d6a123 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
project('spine', 'd',
license: 'AGPL-3',
- version: '0.24.1',
+ version: '0.25.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 939cd3b..c7fb8af 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,14 +98,14 @@
#+NAME: spine_project_version_part_minor
#+BEGIN_SRC org
-24
+25
#+END_SRC
*** patch
#+NAME: spine_project_version_part_patch
#+BEGIN_SRC org
-1
+0
#+END_SRC
* year
diff --git a/package.nix b/package.nix
index 4e50954..0f1c503 100644
--- a/package.nix
+++ b/package.nix
@@ -28,7 +28,7 @@
}:
stdenv.mkDerivation {
pname = "spine";
- version = "0.24.1";
+ version = "0.25.0";
src = lib.cleanSource ./.;
buildInputs = [ sqlite zstd.out ];
nativeBuildInputs = [ dub compilerPkg gnumake ];
@@ -58,7 +58,7 @@ stdenv.mkDerivation {
'';
postInstall = ''
echo `ls -la $out/bin/spine`
- echo "❯❯ spine-v0.24.1 (rev: ${rev})"
+ echo "❯❯ spine-v0.25.0 (rev: ${rev})"
$out/bin/spine -v
'';
meta = {
diff --git a/views/version.txt b/views/version.txt
index dc2541e..ca94c4b 100644
--- a/views/version.txt
+++ b/views/version.txt
@@ -4,7 +4,7 @@ struct Version {
int minor;
int patch;
}
-enum _ver = Version(0, 24, 1);
+enum _ver = Version(0, 25, 0);
version (Posix) {
version (DigitalMars) {
} else version (LDC) {