From 3aefcd242b2d2051a43cb98a71148a9f5878bdee Mon Sep 17 00:00:00 2001 From: Alex Epstein Date: Fri, 30 Jun 2017 01:48:34 -0400 Subject: [PATCH] Updating to 1.4.0 --- README.md | 2 +- changelog.md | 8 ++++++++ crypt/crypt | 2 +- currency/currency | 2 +- install.sh | 2 +- movies/movies | 2 +- stocks/stocks | 2 +- taste/taste | 2 +- weather/weather | 2 +- 9 files changed, 16 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 2d317e7..4bb7e49 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ Also can provide information on a given item * Then cd into the cloned directory: ```cd Bash-Snippets``` -* Git checkout to the latest stable release ```git checkout v1.3.1``` +* Git checkout to the latest stable release ```git checkout v1.4.0``` * Run the guided install script with ```bash diff --git a/changelog.md b/changelog.md index 7c884ea..4186b33 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,14 @@ # Bash-Snippets Changelog +## Version 1.4.0 + + +# Changes +* Added taste component + +
+ ## Version 1.3.1
diff --git a/crypt/crypt b/crypt/crypt index b1fd4b6..bab63b9 100755 --- a/crypt/crypt +++ b/crypt/crypt @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.3.1" +currentVersion="1.4.0" ## uses openssl aes 256 cbc encryption to encrypt file salting it with password designated by user encrypt() diff --git a/currency/currency b/currency/currency index 1715e21..f1634b6 100755 --- a/currency/currency +++ b/currency/currency @@ -3,7 +3,7 @@ base="" exchangeTo="" -currentVersion="1.3.1" +currentVersion="1.4.0" configuredClient="" ## This function determines which http get tool the system has installed and returns an error if there isnt one diff --git a/install.sh b/install.sh index 49305c0..8163651 100755 --- a/install.sh +++ b/install.sh @@ -1,6 +1,6 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.3.1" +currentVersion="1.4.0" if [[ $# == 0 ]]; then diff --git a/movies/movies b/movies/movies index 2de045f..b5dc24b 100755 --- a/movies/movies +++ b/movies/movies @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.3.1" +currentVersion="1.4.0" configuredClient="" ## This function determines which http get tool the system has installed and returns an error if there isnt one diff --git a/stocks/stocks b/stocks/stocks index e952c5a..524ad19 100755 --- a/stocks/stocks +++ b/stocks/stocks @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.3.1" +currentVersion="1.4.0" configuredClient="" ## This function determines which http get tool the system has installed and returns an error if there isnt one diff --git a/taste/taste b/taste/taste index bdc15f0..2743247 100755 --- a/taste/taste +++ b/taste/taste @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.3.1" +currentVersion="1.4.0" configuredClient="" source ~/.bashrc apiKey=$TASTE_API_KEY diff --git a/weather/weather b/weather/weather index 4e79c4b..6bd6de3 100755 --- a/weather/weather +++ b/weather/weather @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.3.1" #This version variable should not have a v but should contain all other characters ex Github release tag is v1.2.4 currentVersion is 1.2.4 +currentVersion="1.4.0" #This version variable should not have a v but should contain all other characters ex Github release tag is v1.2.4 currentVersion is 1.2.4 locale=$(echo $LANG | cut -c1-2) configuredClient=""