From 9b4b03bcb5425d15b82650ba4b4a8341f49e29aa Mon Sep 17 00:00:00 2001 From: Ezri Zhu Date: Wed, 21 May 2025 19:13:01 -0400 Subject: [PATCH 1/3] docs: changelog for 0.3.0 --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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. From b66970d20e320f5dbbdca547cafa363aeba16ee2 Mon Sep 17 00:00:00 2001 From: Ezri Zhu Date: Wed, 21 May 2025 19:13:08 -0400 Subject: [PATCH 2/3] version to 0.3.0 --- configure.ac | 2 +- docs/try.1.md | 2 +- package.nix | 2 +- try | 4 ++-- utils/version.h | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) 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..bcf2b8a9 100644 --- a/package.nix +++ b/package.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation { versionCheckHook ]; preVersionCheck = '' - export version=0.2.0 + export version=0.3.0 ''; versionCheckProgramArg = "-v"; 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 From 6a7e13fae89fa5417cbd3b1d12fda5d5335830a1 Mon Sep 17 00:00:00 2001 From: Ezri Zhu Date: Wed, 21 May 2025 19:28:26 -0400 Subject: [PATCH 3/3] update package.nix --- package.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/package.nix b/package.nix index bcf2b8a9..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.3.0 - ''; versionCheckProgramArg = "-v"; meta = {