Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -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])
Expand Down
2 changes: 1 addition & 1 deletion docs/try.1.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 3 additions & 6 deletions package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -57,9 +57,6 @@ stdenv.mkDerivation {
nativeInstallCheckInputs = [
versionCheckHook
];
preVersionCheck = ''
export version=0.2.0
'';
versionCheckProgramArg = "-v";

meta = {
Expand Down
4 changes: 2 additions & 2 deletions try
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion utils/version.h
Original file line number Diff line number Diff line change
@@ -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
Loading