diff --git a/README.md b/README.md index a3f1c89..f6b0aa9 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ Quick search that grabs relevant information about a movie * Then cd into the cloned directory: ```cd Bash-Snippets``` -* Git checkout to the latest stable release ```git checkout v1.1.1``` +* Git checkout to the latest stable release ```git checkout v1.2.0``` * Run the guided install script with ```bash diff --git a/crypt/crypt b/crypt/crypt index 9d5409d..626006d 100755 --- a/crypt/crypt +++ b/crypt/crypt @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.1.1" +currentVersion="1.2.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 777adc0..c0e6c2c 100755 --- a/currency/currency +++ b/currency/currency @@ -3,7 +3,7 @@ base="" exchangeTo="" -currentVersion="1.1.1" +currentVersion="1.2.0" ## Grabs the base currency from the user and validates it with all the possible currency ## types available on the API and guides user through input (doesnt take in arguments) getBase() diff --git a/install.sh b/install.sh index dc97a49..e26673e 100755 --- a/install.sh +++ b/install.sh @@ -1,6 +1,6 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.1.1" +currentVersion="1.2.0" if [[ $# == 0 ]]; then diff --git a/movies/movies b/movies/movies index 1e66b8e..d3f6048 100755 --- a/movies/movies +++ b/movies/movies @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.1.1" +currentVersion="1.2.0" checkInternet() { diff --git a/stocks/stocks b/stocks/stocks index 6f22ccc..2b2e43f 100755 --- a/stocks/stocks +++ b/stocks/stocks @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.1.1" +currentVersion="1.2.0" checkInternet() { diff --git a/weather/weather b/weather/weather index a1066d2..2361f41 100755 --- a/weather/weather +++ b/weather/weather @@ -1,7 +1,7 @@ #!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein -currentVersion="1.1.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.2.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) getIPWeather()