Skip to content

Commit

Permalink
chore: release version 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
garrappachc committed Oct 3, 2021
1 parent b547fce commit 3902191
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 1 deletion.
29 changes: 29 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"git": {
"commitMessage": "chore: release version ${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
},
"@j-ulrich/release-it-regex-bumper": {
"in": {
"file": "scripting/connector.sp",
"search": "#define PLUGIN_VERSION \"(\\d+\\.\\d+\\.\\d+)\"",
"versionCaptureGroup": 1
},
"out": {
"file": "scripting/connector.sp",
"search": "#define PLUGIN_VERSION \"(\\d+\\.\\d+\\.\\d+)\"",
"replace": "#define PLUGIN_VERSION \"{{version}}\""
}
}
}
}
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## [0.0.2](https://github.com/tf2pickup-org/connector/compare/0.0.1...0.0.2) (2021-10-03)


### Bug Fixes

* rename apiKey to secret ([#5](https://github.com/tf2pickup-org/connector/issues/5)) ([b547fce](https://github.com/tf2pickup-org/connector/commit/b547fce997e0480e21430d992b16c35e904b1006))



## [0.0.1](https://github.com/tf2pickup-org/connector/compare/0.0.1...0.0.2) (2021-09-16)


### Bug Fixes

* **ci:** upload to release asset ([#2](https://github.com/tf2pickup-org/connector/issues/2)) ([8e157d4](https://github.com/tf2pickup-org/connector/commit/8e157d4e208777c89e7dae8251cf1fd56e562efc))


### Features

* heartbeat initial implementation ([faa32d8](https://github.com/tf2pickup-org/connector/commit/faa32d8c6d2c4452440dc2c995cb2dc2e57f0b59))

2 changes: 1 addition & 1 deletion scripting/connector.sp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include <system2>
#include <SteamWorks>

#define PLUGIN_VERSION "0.0.1"
#define PLUGIN_VERSION "0.0.2"

ConVar tf2pickupOrgApiAddress = null;
ConVar tf2pickupOrgSecret = null;
Expand Down

0 comments on commit 3902191

Please sign in to comment.