Skip to content

Commit

Permalink
Merge pull request #71 from Superbition/develop
Browse files Browse the repository at this point in the history
New Release Merge: v5.0.1
  • Loading branch information
danielashare authored May 28, 2021
2 parents 7f18bbc + 8b500a5 commit 1ba4840
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [v5.0.1 (2021-05-28)](https://github.com/Superbition/Bakup-Agent/releases/tag/v5.0.1)

### Fixed
- Add libcurl as a dependency in the install script for greater compatibility (#70)

## [v5.0.0 (2021-05-08)](https://github.com/Superbition/Bakup-Agent/releases/tag/v5.0.0)

### Added
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ service bakupagent stop

# Download dependencies for SSL
echo "Acquiring SSL dependencies..."
apt-get -qq install openssl ca-certificates -y
apt-get -qq install openssl ca-certificates libcurl4-openssl-dev -y

# Create the directories needed for storing files and the binary
echo "Creating directories..."
Expand Down
2 changes: 1 addition & 1 deletion src/Agent.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class Agent
const string apiVersion = "1";

// Version of the agent
const string agentVersion = "v5.0.0";
const string agentVersion = "v5.0.1";

// Program loop wait time in seconds
const int pollTime = 60;
Expand Down

0 comments on commit 1ba4840

Please sign in to comment.