diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2021-02-19 16:33:51 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2021-02-24 16:46:47 -0500 |
commit | 47ca5be10805e1c61c0ac3df5ac7ad80fa6dc665 (patch) | |
tree | 63419975dbbd28da882d9f34cf680f30aa96c3b0 | |
parent | CHANGELOG (diff) |
0.11.3
-rwxr-xr-x | default.nix | 2 | ||||
-rw-r--r-- | dub.json | 2 | ||||
-rw-r--r-- | makefile | 4 | ||||
-rw-r--r-- | meson.build | 2 | ||||
-rw-r--r-- | org/spine.org | 2 | ||||
-rw-r--r-- | org/spine_build_scaffold.org | 2 | ||||
-rwxr-xr-x | project.nix | 2 | ||||
-rwxr-xr-x | spine.nix | 2 | ||||
-rw-r--r-- | views/version.txt | 2 |
9 files changed, 10 insertions, 10 deletions
diff --git a/default.nix b/default.nix index 7e4f233..1db6ad0 100755 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ with import ./nix/mkDub.nix { inherit pkgs; }; mkDubDerivation rec { name = "spine-${version}"; - version = "0.11.2"; + version = "0.11.3"; src = ./.; buildInputs = [ pkgs.sqlite @@ -4,7 +4,7 @@ ], "copyright": "Copyright © 2015 - 2020 Ralph Amissah", "name": "spine", - "version": "0.11.2", + "version": "0.11.3", "description": "a sisu like document parser", "homepage": "http://sisudoc.org", "license": "AGPL-3.0+", @@ -86,8 +86,8 @@ markup_pod_samples: markup_dir_samples: find data/sisudir/media/text -name *.ss[tm] | sort version_tag: - echo "DRV=0.11.2; git tag -f doc-reform_v$$\{DRV} -m\"doc-reform $$\{DRV}\" HEAD" && \ - echo "git tag -f doc-reform_v0.11.2 -m\"doc-reform spine-0.11.2\" HEAD" + echo "DRV=0.11.3; git tag -f doc-reform_v$$\{DRV} -m\"doc-reform $$\{DRV}\" HEAD" && \ + echo "git tag -f doc-reform_v0.11.3 -m\"doc-reform spine-0.11.3\" HEAD" changelog: git log --pretty=format:'---%+s %+as %ae%+h%d%+b' --no-merges | sed "/^\\s*$$/d" | sed "s/^---$$//" | sed "s/^\(\*\)\+/-/" | sed "s/ \+$$//" > CHANGELOG_ gitZip: diff --git a/meson.build b/meson.build index 50ce01f..1c4b214 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('spine', 'd', license: 'AGPL-3', - version: '0.11.2', + version: '0.11.3', meson_version: '>=0.46' ) #if meson.get_compiler('d').get_id() == 'gcc' diff --git a/org/spine.org b/org/spine.org index 70010b1..011bb39 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, 2); +enum _ver = Version(0, 11, 3); #+END_SRC ** compilation restrictions (supported compilers) diff --git a/org/spine_build_scaffold.org b/org/spine_build_scaffold.org index 926d29a..08bf338 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.2 +0.11.3 #+END_SRC ** subprojects diff --git a/project.nix b/project.nix index fddd77b..e5a3f60 100755 --- a/project.nix +++ b/project.nix @@ -3,7 +3,7 @@ with import ./nix/mkDub.nix { inherit pkgs; }; mkDubDerivation rec { name = "spine-${version}"; - version = "0.11.2"; + version = "0.11.3"; src = ./.; buildInputs = [ pkgs.sqlite @@ -112,7 +112,7 @@ with ( # mkDub.nix ); mkDubDerivation rec { name = "spine-${version}"; - version = "0.11.2"; + version = "0.11.3"; src = ./.; buildInputs = [ pkgs.sqlite diff --git a/views/version.txt b/views/version.txt index 4911cc7..728ca0d 100644 --- a/views/version.txt +++ b/views/version.txt @@ -4,7 +4,7 @@ struct Version { int minor; int patch; } -enum _ver = Version(0, 11, 2); +enum _ver = Version(0, 11, 3); version (Posix) { version (DigitalMars) { } else version (LDC) { |