Skip to content

Commit

Permalink
Release v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
navrocky committed Feb 4, 2025
1 parent 52a44b7 commit 239d0bd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# 1.3.0 (2025.02.04)

* Add function to convert bool string variable to bool (varToBool)
* Remove Mstch engine

# 1.2.0 (2025.01.23)

* Add Inja engine
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Download and copy binary to any destination specified in `PATH` (~/bin, /usr/loc
Do not forget to set execution flag on binary with `chmod`.

```sh
sudo curl https://github.com/navrocky/muenvsubst/releases/download/1.2.0/muenvsubst -Lo /usr/local/bin/muenvsubst
sudo curl https://github.com/navrocky/muenvsubst/releases/download/1.3.0/muenvsubst -Lo /usr/local/bin/muenvsubst
sudo chmod +x /usr/local/bin/muenvsubst
```

Expand Down
4 changes: 2 additions & 2 deletions cli/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ using namespace std;
using namespace std::placeholders;
using namespace Args;

const char* APP_VERSION = "1.2.0";
const char* APP_VERSION = "1.3.0";

int main(int argc, char** argv, char** envp)
{
Expand All @@ -20,7 +20,7 @@ int main(int argc, char** argv, char** envp)
cmd.parse();

if (cmd.isDefined("-V")) {
cout << "1.2.0" << endl;
cout << APP_VERSION << endl;
return 0;
}

Expand Down

0 comments on commit 239d0bd

Please sign in to comment.