Skip to content

Commit 801a69f

Browse files
author
R. S. Doiel
committed
prep for v2.3.0, The object versioning problem identified in issue #149 persisted after the release of v2.2.8. The resulting mitigation steps before the planned v3 release of data is to ignore the version.json file held in the collection's root directory. As of v2.3 this file is no longer read, written or updated. Instead the collection level methods will explicitly set the versioning type at the store level. This means one locations holds versioning state, the collection.json. This simplified the codebase and appears to be backward compatible.
1 parent f9fc2d1 commit 801a69f

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ update_version:
212212
codemeta2cff
213213

214214
release: .FORCE clean build version.go CITATION.cff man website distribute_docs dist/Linux-x86_64 dist/Linux-aarch64 dist/Linux-armv7l dist/Windows-x86_64 dist/Windows-arm64 dist/macOS-x86_64 dist/macOS-arm64
215-
./release.bash
215+
@printf "\nReady to run\n\n\t./release.bash\n\n"
216216

217217
status:
218218
git status

dataset.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%dataset(1) user manual | version 2.3.0 15a68ce
1+
%dataset(1) user manual | version 2.3.0 f9fc2d1
22
% R. S. Doiel and Tom Morrell
33
% 2025-06-27
44

datasetd.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%datasetd(1) user manual | version 2.3.0 15a68ce
1+
%datasetd(1) user manual | version 2.3.0 f9fc2d1
22
% R. S. Doiel
33
% 2025-06-27
44

dsimporter.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%dsimporter(1) dataset user manual | version 2.3.0 15a68ce
1+
%dsimporter(1) dataset user manual | version 2.3.0 f9fc2d1
22
% R. S. Doiel and Tom Morrell
33
% 2025-06-27
44

dsquery.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%dsquery(1) dataset user manual | version 2.3.0 15a68ce
1+
%dsquery(1) dataset user manual | version 2.3.0 f9fc2d1
22
% R. S. Doiel and Tom Morrell
33
% 2025-06-27
44

installer.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env pwsh
2-
# generated with CMTools 2.3.0 15a68ce
2+
# generated with CMTools 2.3.0 f9fc2d1
33

44
#
55
# Set the package name and version to install

installer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# generated with CMTools 2.3.0 15a68ce
2+
# generated with CMTools 2.3.0 f9fc2d1
33

44
#
55
# Set the package name and version to install

release.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# generated with CMTools 2.2.7 b3036dd 2025-06-02
2+
# generated with CMTools 2.3.0 f9fc2d1
33

44
#
55
# Release script for dataset on GitHub using gh cli.

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const (
1212
ReleaseDate = "2025-06-27"
1313

1414
// ReleaseHash, the Git hash when version.go was generated
15-
ReleaseHash = "15a68ce"
15+
ReleaseHash = "f9fc2d1"
1616
LicenseText = `
1717
1818
Copyright (c) 2022, Caltech

0 commit comments

Comments
 (0)