diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2024-06-29 13:07:27 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2024-06-29 13:07:27 -0400 | 
| commit | f2d12a2acae45c50506c04a6da707463f85a8263 (patch) | |
| tree | 6ad118cc66c616cea7c01b7c30d5fae9eeb60600 | |
| parent | shallow clone for install directory (diff) | |
0.17.0
| -rw-r--r-- | derivation.nix | 2 | ||||
| -rw-r--r-- | dub.json | 2 | ||||
| -rw-r--r-- | flake.lock | 6 | ||||
| -rw-r--r-- | flake.nix | 2 | ||||
| -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-- | views/version.txt | 2 | 
8 files changed, 11 insertions, 11 deletions
| diff --git a/derivation.nix b/derivation.nix index 1db0c88..1457658 100644 --- a/derivation.nix +++ b/derivation.nix @@ -87,7 +87,7 @@ with (  );    mkDubDerivation rec {      pname = "spine"; -    version = "0.16.0"; +    version = "0.17.0";      src = ./.;      nativeBuildInputs = with pkgs; [dub ldc];      buildInputs = with pkgs; [nixVersions.nix_2_21 sqlite]; @@ -4,7 +4,7 @@    ],    "copyright":                 "Copyright © 2015 - 2024 Ralph Amissah",    "name":                      "spine", -  "version":                   "0.16.0", +  "version":                   "0.17.0",    "description":               "an object-centric sisu-like document parser",    "homepage":                  "https://sisudoc.org",    "license":                   "AGPL-3.0+", @@ -20,11 +20,11 @@      },      "nixpkgs": {        "locked": { -        "lastModified": 1715897893, -        "narHash": "sha256-OrvqfRNUTKNg25z7+mCLV2PAnAjvdj/Z7HeS1g5OB7E=", +        "lastModified": 1719468428, +        "narHash": "sha256-vN5xJAZ4UGREEglh3lfbbkIj+MPEYMuqewMn4atZFaQ=",          "owner": "NixOS",          "repo": "nixpkgs", -        "rev": "ea77cefecb0ab07e61d6bde3e24c7ae6820b96d5", +        "rev": "1e3deb3d8a86a870d925760db1a5adecc64d329d",          "type": "github"        },        "original": { @@ -8,7 +8,7 @@      flake-utils,    } @ inputs: let      pname = "spine"; -    version = "0.16.0"; +    version = "0.17.0";      shell = ./shell.nix;      devEnv = ./nixDevEnv.sh;      supportedSystems = ["x86_64-linux"]; # [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; @@ -1301,8 +1301,8 @@ gitsnapshot: distclean tangle  	git commit -a  version_tag: -	echo "DRV=0.16.0; git tag -f sisudoc-spine_v$$\{DRV} -m\"doc-reform sisudoc spine-$$\{DRV}\" HEAD"; \ -	echo "git tag -f sisudoc-spine_v0.16.0 -m\"doc-reform sisudoc spine-0.16.0\" HEAD" +	echo "DRV=0.17.0; git tag -f sisudoc-spine_v$$\{DRV} -m\"doc-reform sisudoc spine-$$\{DRV}\" HEAD"; \ +	echo "git tag -f sisudoc-spine_v0.17.0 -m\"doc-reform sisudoc spine-0.17.0\" HEAD"  .PHONY : all build rebuild release \  	distclean init \ diff --git a/meson.build b/meson.build index 99e0b59..226e198 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@  project('spine', 'd',    license: 'AGPL-3', -  version: '0.16.0', +  version: '0.17.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 ed7def8..28ead23 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 -16 +17  #+END_SRC  *** patch diff --git a/views/version.txt b/views/version.txt index 6509480..fecec3f 100644 --- a/views/version.txt +++ b/views/version.txt @@ -4,7 +4,7 @@ struct Version {    int minor;    int patch;  } -enum _ver = Version(0, 16, 0); +enum _ver = Version(0, 17, 0);  version (Posix) {    version (DigitalMars) {    } else version (LDC) { | 
