Skip to content

Commit

Permalink
Updating to 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Epstein committed Jun 30, 2017
1 parent c715b15 commit 3aefcd2
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

# Bash-Snippets Changelog

## Version 1.4.0
</div>

# Changes
* Added taste component

<div align="center">

## Version 1.3.1

</div>
Expand Down
2 changes: 1 addition & 1 deletion crypt/crypt
Original file line number Diff line number Diff line change
@@ -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()
Expand Down
2 changes: 1 addition & 1 deletion currency/currency
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.3.1"
currentVersion="1.4.0"

if [[ $# == 0 ]]; then

Expand Down
2 changes: 1 addition & 1 deletion movies/movies
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion stocks/stocks
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion taste/taste
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion weather/weather
Original file line number Diff line number Diff line change
@@ -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=""

Expand Down

0 comments on commit 3aefcd2

Please sign in to comment.