diff options
| -rw-r--r-- | CHANGELOG | 8 | ||||
| -rw-r--r-- | Cargo.lock | 2 | ||||
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | Makefile | 15 | ||||
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | passextract.bash-completion | 2 | ||||
| -rw-r--r-- | src/main.rs | 2 | 
7 files changed, 28 insertions, 7 deletions
| @@ -1,6 +1,14 @@  CHANGELOG  ========= +v0.4.0 (2018-03-03): + +Additions: + +    * `-i` command line flag hides password strings with stars ('*'). +    * Changelog +    * Man page +  v0.3.0 (2016-11-14):  Additions: @@ -85,7 +85,7 @@ dependencies = [  [[package]]  name = "passextract" -version = "0.3.0" +version = "0.4.0"  dependencies = [   "clipboard 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",   "rustty 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1,6 +1,6 @@  [package]  name = "passextract" -version = "0.3.0" +version = "0.4.0"  [dependencies]  clipboard = "0.1.2" @@ -1,4 +1,6 @@  TRANSFORMED_MAN_PAGE := doc/passextract.1.transformed +VERSION := 0.4.0 +RELEASE_DIR := passextract-$(VERSION)  $(TRANSFORMED_MAN_PAGE): doc/passextract.1.txt  	sed 's/`/*/g' $< > $@ @@ -11,4 +13,15 @@ doc/passextract.1: $(TRANSFORMED_MAN_PAGE)  doc: doc/passextract.1 clean_transformed -.PHONY: clean_transformed doc +release: +	cargo build --release && \ +	mkdir -p $(RELEASE_DIR) && \ +	cp target/release/passextract \ +		passextract.bash-completion \ +		doc/passextract.1 \ +		$(RELEASE_DIR) && \ +	tar cjvf passextract-$(VERSION)_osx_amd64.tar.bz2 \ +		$(RELEASE_DIR) && \ +	rm -rf $(RELEASE_DIR) + +.PHONY: clean_transformed doc release @@ -69,8 +69,8 @@ compiler.  ## License -Copyright © 2016 Teddy Wing. Licensed under the GNU GPLv3+ (see the included -COPYING file). +Copyright © 2016, 2018 Teddy Wing. Licensed under the GNU GPLv3+ (see the +included COPYING file).  [1]: https://www.passwordstore.org/ diff --git a/passextract.bash-completion b/passextract.bash-completion index 829cc1d..90beb3a 100644 --- a/passextract.bash-completion +++ b/passextract.bash-completion @@ -1,4 +1,4 @@ -# Copyright (c) 2016  Teddy Wing +# Copyright (c) 2016, 2018  Teddy Wing  #  # This file is licensed under the GNU GPLv3+. Please see the COPYING  # file for more information. diff --git a/src/main.rs b/src/main.rs index 28b0259..47095b8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2016  Teddy Wing +// Copyright (c) 2016, 2018  Teddy Wing  //  // This file is licensed under the GNU GPLv3+. Please see the COPYING  // file for more information. | 
