diff --git a/README.md b/README.md index a018f42c..bee4327e 100644 --- a/README.md +++ b/README.md @@ -211,6 +211,20 @@ Please also report any issue you run into while using the future branch! ## Version History +* v0.3.0 - 2025-05-21 + - Implement Multi-Lower-Layer Overlay Support through Merging + - Add option `-x` to unshare network namespace + - Replace subshell with POSIX Parameter expansion + - Keep toplevel dir modes and symlinks + - Use tmpfs if tmp is in overlay for docker support + - C utilities for summarizing and committing changes + - Autoconfiscate + - Stdstream support + - Minimize tempfile churn + - Naming tempfiles + - Bug fixes + + * v0.2.0 - 2023-07-24 - Refactor tests. - Improved linting. diff --git a/configure.ac b/configure.ac index 82841b5a..7d455eb0 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.68) -AC_INIT([try], [0.2.0], [https://github.com/binpash/try/issues]) +AC_INIT([try], [0.3.0], [https://github.com/binpash/try/issues]) # make sure we're in the right place AC_CONFIG_SRCDIR([try]) diff --git a/docs/try.1.md b/docs/try.1.md index d3ee1ed6..6398890e 100644 --- a/docs/try.1.md +++ b/docs/try.1.md @@ -1,4 +1,4 @@ -% TRY(1) try 0.2.0 | Do, or do not. There is no *try*. +% TRY(1) try 0.3.0 | Do, or do not. There is no *try*. % The PaSh Authors # NAME diff --git a/package.nix b/package.nix index 02db2f90..45db62b6 100644 --- a/package.nix +++ b/package.nix @@ -14,13 +14,13 @@ }: stdenv.mkDerivation { pname = "try"; - version = "latest"; + version = "0.3.0"; src = fetchFromGitHub { owner = "binpash"; repo = "try"; - rev = "67052d8f20725f3cdc22ffaec33f7b7c14f1eb6b"; - hash = "sha256-8mfCmqN50pRAeNTJUlRVrRQulWon4b2OL4Ug/ygBhB0="; + rev = "b66970d20e320f5dbbdca547cafa363aeba16ee2"; + hash = "sha256-WZ35228zEfTw8fF+wgs6dZlzuPrgPnepChmM0OMYDX4="; }; # skip TRY_REQUIRE_PROG as it detects executable dependencies by running it @@ -57,9 +57,6 @@ stdenv.mkDerivation { nativeInstallCheckInputs = [ versionCheckHook ]; - preVersionCheck = '' - export version=0.2.0 - ''; versionCheckProgramArg = "-v"; meta = { diff --git a/try b/try index 32e69427..2bb43b12 100755 --- a/try +++ b/try @@ -1,13 +1,13 @@ #!/bin/sh -# Copyright (c) 2023 The PaSh Authors. +# Copyright (c) 2023-2025 The PaSh Authors. # # Usage of this source code is governed by the MIT license, you can find the # LICENSE file in the root directory of this project. # # https://github.com/binpash/try -TRY_VERSION="0.2.0" +TRY_VERSION="0.3.0" TRY_COMMAND="${0##*/}" EXECID="$(date +%s%3N)" export EXECID diff --git a/utils/version.h b/utils/version.h index d6d76183..c6cdbde9 100644 --- a/utils/version.h +++ b/utils/version.h @@ -1,6 +1,6 @@ #ifndef __TRY_VERSION_H #define __TRY_VERSION_H -#define TRY_VERSION "0.2.0" +#define TRY_VERSION "0.3.0" #endif