Skip to content

Commit fe40ce6

Browse files
authored
Release v0.9.5 (#521)
1 parent 3e5ee5e commit fe40ce6

File tree

25 files changed

+314
-58
lines changed

25 files changed

+314
-58
lines changed

ChangeLog

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
=== rmw ChangeLog ===
21

3-
2025-12-29
2+
2026-04-07
43

5-
* bugfix: Get path to 'mv' using meson (fixes #509)
4+
- rmw 0.9.5:
5+
* bugfix: Get path to 'mv' at runtime (used for btrfs)(fixes #509)
6+
* Improve test isolation (#519)
67

78
2025-11-06
89

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# rmw-0.9.5-dev
1+
# rmw-0.9.5
22
## Description
33

44
rmw (ReMove to Waste) is a trashcan/recycle bin utility for the command line.
@@ -52,7 +52,7 @@ available.
5252
AppImages and maintainer-created amd64 Debian packages are available in
5353
the [releases section][releases-url].
5454

55-
[releases-url]: https://github.com/theimpossibleastronaut/rmw/releases
55+
[releases-url]: https://github.com/theimpossibleastronaut/rmw/releases/latest
5656

5757
## Installing from source
5858

docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ Image contains a build of rmw in '/usr/bin'. You can try it out inside the
88
container if you like.
99

1010
docker pull andy5995/rmw:latest (latest git revision)
11-
docker pull andy5995/rmw:0.9.4 (latest release)
11+
docker pull andy5995/rmw:0.9.5 (latest release)

licenses/canfigger-LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Andy Alt
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

licenses/ncurses-LICENSE

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Copyright 2018-2024,2025 Thomas E. Dickey
2+
Copyright 1998-2017,2018 Free Software Foundation, Inc.
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a
5+
copy of this software and associated documentation files (the
6+
"Software"), to deal in the Software without restriction, including
7+
without limitation the rights to use, copy, modify, merge, publish,
8+
distribute, distribute with modifications, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included
13+
in all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18+
IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
19+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
21+
THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22+
23+
Except as contained in this notice, the name(s) of the above copyright
24+
holders shall not be used in advertising or otherwise to promote the
25+
sale, use or other dealings in this Software without prior written
26+
authorization.
27+
28+
-- vile:txtmode fc=72
29+
-- $Id: COPYING,v 1.14 2025/01/04 10:53:46 tom Exp $

man/rmw.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH RMW "1" "Nov 2025" "rmw 0.9.4" "User Commands"
1+
.TH RMW "1" "Apr 2026" "rmw 0.9.5" "User Commands"
22
.SH NAME
33
rmw \- safe-remove utility for the command line
44
.SH SYNOPSIS

meson.build

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
project(
22
'rmw',
33
'c',
4-
version: '0.9.5-dev',
4+
version: '0.9.5',
55
meson_version: '>= 0.59.0',
66
default_options: [
77
'c_std=gnu99',
88
'warning_level=3',
9-
'b_sanitize=address,undefined',
10-
'b_lundef=false',
9+
# 'b_sanitize=address,undefined',
10+
# 'b_lundef=false',
1111
'pkg_config_path=/opt/homebrew/opt/gettext/lib/pkgconfig,/opt/homebrew/opt/ncurses/lib/pkgconfig,/usr/local/opt/ncurses/lib/pkgconfig',
1212
],
1313
)
@@ -88,12 +88,14 @@ install_data(
8888
'COPYING',
8989
'ChangeLog',
9090
'README.md',
91-
'ReleaseNotes',
9291
'rmwrc.example',
9392
),
9493
install_dir: get_option('docdir'),
9594
)
9695

96+
# Third-party licenses
97+
install_subdir('licenses', install_dir: get_option('docdir'))
98+
9799
# Copy completions to docdir
98100
install_subdir(
99101
'completions',

packaging/Slackbuild/rmw/rmw.SlackBuild

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Slackware build script for rmw
44
#
5-
# Copyright 2019-2025 / Andy Alt / United States
5+
# Copyright 2019-2026 / Andy Alt / United States
66
# All rights reserved.
77
#
88
# Redistribution and use of this script, with or without modification, is
@@ -25,7 +25,7 @@
2525
cd $(dirname $0) ; CWD=$(pwd)
2626

2727
PRGNAM=rmw
28-
VERSION=${VERSION:-0.9.4}
28+
VERSION=${VERSION:-0.9.5}
2929
BUILD=${BUILD:-1}
3030
TAG=${TAG:-_SBo}
3131
PKGTYPE=${PKGTYPE:-tgz}

packaging/Slackbuild/rmw/rmw.info

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PRGNAM="rmw"
2-
VERSION="0.9.4"
2+
VERSION="0.9.5"
33
HOMEPAGE="https://theimpossibleastronaut.github.io/rmw-website/"
4-
DOWNLOAD="https://github.com/theimpossibleastronaut/rmw/releases/download/v0.9.4/rmw-0.9.4.tar.xz"
5-
MD5SUM="0df2da3c1b6985cdd4022ff4b3d6fd13"
4+
DOWNLOAD="https://github.com/theimpossibleastronaut/rmw/releases/download/v0.9.5/rmw-0.9.5.tar.xz"
5+
MD5SUM=""
66
DOWNLOAD_x86_64=""
77
MD5SUM_x86_64=""
88
REQUIRES=""

packaging/debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
rmw (0.9.4) stable; urgency=medium
1+
rmw (0.9.5) stable; urgency=medium
22

33
[ Andy Alt ]
44
* New upstream release

0 commit comments

Comments
 (0)