diff options
-rwxr-xr-x | default.nix | 2 | ||||
-rw-r--r-- | dub.json | 2 | ||||
-rw-r--r-- | meson.build | 2 | ||||
-rw-r--r-- | org/spine.org | 2 | ||||
-rw-r--r-- | org/spine_build_scaffold.org | 6 | ||||
-rwxr-xr-x | project.nix | 2 | ||||
-rwxr-xr-x | spine.nix | 2 | ||||
-rw-r--r-- | views/version.txt | 2 |
8 files changed, 10 insertions, 10 deletions
diff --git a/default.nix b/default.nix index 5826a65..ae125f7 100755 --- a/default.nix +++ b/default.nix @@ -5,7 +5,7 @@ with import ./nix/mkDub.nix { inherit pkgs; }; mkDubDerivation rec { name = "spine-${version}"; - version = "0.11.1"; + version = "0.11.2"; src = ./.; buildInputs = [ pkgs.sqlite @@ -4,7 +4,7 @@ ], "copyright": "Copyright © 2015 - 2020 Ralph Amissah", "name": "spine", - "version": "0.11.1", + "version": "0.11.2", "description": "a sisu like document parser", "homepage": "http://sisudoc.org", "license": "AGPL-3.0+", diff --git a/meson.build b/meson.build index 434db0d..50ce01f 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('spine', 'd', license: 'AGPL-3', - version: '0.11.1', + version: '0.11.2', meson_version: '>=0.46' ) #if meson.get_compiler('d').get_id() == 'gcc' diff --git a/org/spine.org b/org/spine.org index 5267a3c..70010b1 100644 --- a/org/spine.org +++ b/org/spine.org @@ -43,7 +43,7 @@ struct Version { #+NAME: spine_version_current_set #+BEGIN_SRC d -enum _ver = Version(0, 11, 1); +enum _ver = Version(0, 11, 2); #+END_SRC ** compilation restrictions (supported compilers) diff --git a/org/spine_build_scaffold.org b/org/spine_build_scaffold.org index 0863822..1168968 100644 --- a/org/spine_build_scaffold.org +++ b/org/spine_build_scaffold.org @@ -23,7 +23,7 @@ #+NAME: version_spine #+BEGIN_SRC sh -0.11.1 +0.11.2 #+END_SRC ** subprojects @@ -1986,7 +1986,7 @@ pkgs.mkShell { with import ./nix/mkDub.nix { inherit pkgs; }; mkDubDerivation rec { name = "spine-${version}"; - version = "0.11.1"; + version = "<<version_spine>>"; src = ./.; buildInputs = with pkgs; [( import ./nix/pkglst/shell-pkgs.nix @@ -2011,7 +2011,7 @@ mkDubDerivation rec { with import ./nix/mkDub.nix { inherit pkgs; }; mkDubDerivation rec { name = "spine-${version}"; - version = "0.11.1"; + version = "<<version_spine>>"; src = ./.; buildInputs = [ pkgs.sqlite diff --git a/project.nix b/project.nix index 6dbafcd..700f412 100755 --- a/project.nix +++ b/project.nix @@ -5,7 +5,7 @@ with import ./nix/mkDub.nix { inherit pkgs; }; mkDubDerivation rec { name = "spine-${version}"; - version = "0.11.1"; + version = "0.11.2"; src = ./.; buildInputs = [ pkgs.sqlite @@ -112,7 +112,7 @@ with ( # mkDub.nix ); mkDubDerivation rec { name = "spine-${version}"; - version = "0.11.1"; + version = "0.11.2"; src = ./.; buildInputs = [ pkgs.sqlite diff --git a/views/version.txt b/views/version.txt index e30ccd1..4911cc7 100644 --- a/views/version.txt +++ b/views/version.txt @@ -4,7 +4,7 @@ struct Version { int minor; int patch; } -enum _ver = Version(0, 11, 1); +enum _ver = Version(0, 11, 2); version (Posix) { version (DigitalMars) { } else version (LDC) { |