Skip to content

Commit a5f007e

Browse files
committed
Version bump
1 parent 4fb5a36 commit a5f007e

3 files changed

Lines changed: 16 additions & 12 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
rmtrash 1.11
1+
rmtrash 1.12
22
============
33

44
Put files (and directories) in trash using the ```trash-put``` command in a way that is, otherwise as ```trash-put``` itself, compatible to GNUs ```rm``` and ```rmdir```.
@@ -89,7 +89,7 @@ Typically you won't notice a time delay when using ```rmtrash``` and ```rmdirtra
8989
License & Copyright
9090
-------------------
9191

92-
Copyright (C) 2011-2015 Daniel Rudolf <http://www.daniel-rudolf.de/>
92+
Copyright (C) 2011-2017 Daniel Rudolf <http://www.daniel-rudolf.de/>
9393

9494
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 of the License only.
9595

rmdirtrash

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# rmdirtrash - `rmdir` compatible layer for `trash`
3-
# Version 1.11 (build 20150511)
3+
# Version 1.12 (build 20171018)
44
#
55
#
66
# SHORT DESCRIPTION:
@@ -68,7 +68,7 @@
6868
#
6969
#
7070
# COPYRIGHT AND LICENSING:
71-
# Copyright (C) 2011-2015 Daniel Rudolf <http://www.daniel-rudolf.de/>
71+
# Copyright (C) 2011-2017 Daniel Rudolf <http://www.daniel-rudolf.de/>
7272
#
7373
# This program is free software: you can redistribute it and/or modify
7474
# it under the terms of the GNU General Public License as published by
@@ -127,12 +127,14 @@
127127
# v1.11 - 2015-05-11 00:05:00+0200
128128
# * fixing deletion of invalid symlinks
129129
# * unifying quotations
130+
# v1.12 - 2017-10-18 18:07:00+0200
131+
# * fixing GitHub Issue #8
130132

131133
LC_ALL=C
132134
APP_NAME=$(basename "$0")
133135

134-
VERSION="1.11"
135-
BUILD="20150511"
136+
VERSION="1.12"
137+
BUILD="20171018"
136138

137139
function showUsage() {
138140
echo "Usage:"
@@ -317,7 +319,7 @@ while true; do
317319

318320
"--version")
319321
echo "rmdirtrash $VERSION (build $BUILD)"
320-
echo "Copyright (C) 2011-2015 Daniel Rudolf"
322+
echo "Copyright (C) 2011-2017 Daniel Rudolf"
321323
echo "License GPLv3: GNU GPL version 3 only <http://gnu.org/licenses/gpl.html>."
322324
echo "This is free software: you are free to change and redistribute it."
323325
echo "There is NO WARRANTY, to the extent permitted by law."

rmtrash

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# rmtrash - `rm` compatible layer for `trash`
3-
# Version 1.11 (build 20150511)
3+
# Version 1.12 (build 20171018)
44
#
55
#
66
# SHORT DESCRIPTION:
@@ -68,7 +68,7 @@
6868
#
6969
#
7070
# COPYRIGHT AND LICENSING:
71-
# Copyright (C) 2011-2015 Daniel Rudolf <http://www.daniel-rudolf.de/>
71+
# Copyright (C) 2011-2017 Daniel Rudolf <http://www.daniel-rudolf.de/>
7272
#
7373
# This program is free software: you can redistribute it and/or modify
7474
# it under the terms of the GNU General Public License as published by
@@ -144,12 +144,14 @@
144144
# v1.11 - 2015-05-11 00:05:00+0200
145145
# * fixing deletion of invalid symlinks
146146
# * unifying quotations
147+
# v1.12 - 2017-10-18 18:07:00+0200
148+
# * fixing GitHub Issue #8
147149

148150
LC_ALL=C
149151
APP_NAME="$(basename "$0")"
150152

151-
VERSION="1.11"
152-
BUILD="20150511"
153+
VERSION="1.12"
154+
BUILD="20171018"
153155

154156
function showUsage() {
155157
echo "Usage:"
@@ -414,7 +416,7 @@ while true; do
414416

415417
"--version")
416418
echo "rmtrash $VERSION (build $BUILD)"
417-
echo "Copyright (C) 2011-2015 Daniel Rudolf"
419+
echo "Copyright (C) 2011-2017 Daniel Rudolf"
418420
echo "License GPLv3: GNU GPL version 3 only <http://gnu.org/licenses/gpl.html>."
419421
echo "This is free software: you are free to change and redistribute it."
420422
echo "There is NO WARRANTY, to the extent permitted by law."

0 commit comments

Comments
 (0)