Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
PhrozenByte committed Oct 18, 2017
1 parent 4fb5a36 commit a5f007e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rmtrash 1.11
rmtrash 1.12
============

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```.
Expand Down Expand Up @@ -89,7 +89,7 @@ Typically you won't notice a time delay when using ```rmtrash``` and ```rmdirtra
License & Copyright
-------------------

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

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.

Expand Down
12 changes: 7 additions & 5 deletions rmdirtrash
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
# rmdirtrash - `rmdir` compatible layer for `trash`
# Version 1.11 (build 20150511)
# Version 1.12 (build 20171018)
#
#
# SHORT DESCRIPTION:
Expand Down Expand Up @@ -68,7 +68,7 @@
#
#
# COPYRIGHT AND LICENSING:
# Copyright (C) 2011-2015 Daniel Rudolf <http://www.daniel-rudolf.de/>
# Copyright (C) 2011-2017 Daniel Rudolf <http://www.daniel-rudolf.de/>
#
# 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
Expand Down Expand Up @@ -127,12 +127,14 @@
# v1.11 - 2015-05-11 00:05:00+0200
# * fixing deletion of invalid symlinks
# * unifying quotations
# v1.12 - 2017-10-18 18:07:00+0200
# * fixing GitHub Issue #8

LC_ALL=C
APP_NAME=$(basename "$0")

VERSION="1.11"
BUILD="20150511"
VERSION="1.12"
BUILD="20171018"

function showUsage() {
echo "Usage:"
Expand Down Expand Up @@ -317,7 +319,7 @@ while true; do

"--version")
echo "rmdirtrash $VERSION (build $BUILD)"
echo "Copyright (C) 2011-2015 Daniel Rudolf"
echo "Copyright (C) 2011-2017 Daniel Rudolf"
echo "License GPLv3: GNU GPL version 3 only <http://gnu.org/licenses/gpl.html>."
echo "This is free software: you are free to change and redistribute it."
echo "There is NO WARRANTY, to the extent permitted by law."
Expand Down
12 changes: 7 additions & 5 deletions rmtrash
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
# rmtrash - `rm` compatible layer for `trash`
# Version 1.11 (build 20150511)
# Version 1.12 (build 20171018)
#
#
# SHORT DESCRIPTION:
Expand Down Expand Up @@ -68,7 +68,7 @@
#
#
# COPYRIGHT AND LICENSING:
# Copyright (C) 2011-2015 Daniel Rudolf <http://www.daniel-rudolf.de/>
# Copyright (C) 2011-2017 Daniel Rudolf <http://www.daniel-rudolf.de/>
#
# 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
Expand Down Expand Up @@ -144,12 +144,14 @@
# v1.11 - 2015-05-11 00:05:00+0200
# * fixing deletion of invalid symlinks
# * unifying quotations
# v1.12 - 2017-10-18 18:07:00+0200
# * fixing GitHub Issue #8

LC_ALL=C
APP_NAME="$(basename "$0")"

VERSION="1.11"
BUILD="20150511"
VERSION="1.12"
BUILD="20171018"

function showUsage() {
echo "Usage:"
Expand Down Expand Up @@ -414,7 +416,7 @@ while true; do

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

0 comments on commit a5f007e

Please sign in to comment.