File tree 3 files changed +33
-6
lines changed
3 files changed +33
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Development
4
4
5
+ ## 1.4.0 (Feb 13, 2019)
6
+
5
7
- Added new tasks to communicate with the StackStorm CLI. The naming standard and parameters
6
8
are modeled after the ` st2 ` CLI command and must be run on the StackStorm node:
7
9
- ` st2::key_decrypt ` - Decrypts an encrypted key/value pair
Original file line number Diff line number Diff line change 1
1
# Releasing module to Puppet Forge
2
2
3
- * Create new feature branch, make changes to module and test.
4
- * Update CHANGELOG.md with release notes
5
- * Update ` metadata.json ` with new version release
3
+ * Prepare tooling
4
+ ``` shell
5
+ bundle config --local path .//vendor/cache
6
+ bundle install
7
+ ```
8
+
9
+ * Get next version number
10
+ ` bundle exec rake module:verison:next:minor `
11
+
12
+ * Create new feature branch
13
+ ` git checkout -b feature/release-x.y.z `
14
+
15
+ * Update CHANGELOG.md. Add a new line just below ` ## Development `
16
+ ` ## x.y.z (Feb 13, 2019) `
17
+
18
+ * Update ` metadata.json ` with new version release.
19
+ ` bundle exec rake module:bump:minor `
20
+
6
21
* Submit branch upstream for review.
7
- * Once +1'd, run ` !puppet publish puppet-st2 <feature branch name> `
8
- * On success, Merge PR
22
+ * Merge PR
23
+ * Pull the latest changes back into your local master branch
24
+ ``` shell
25
+ git checkout master
26
+ git pull
27
+ ```
28
+
29
+ * Create a new package
30
+ ` pdk build `
31
+
32
+ * Create a new Release on GitHub
33
+ * Publish to forge
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " stackstorm-st2" ,
3
- "version" : " 1.3 .0" ,
3
+ "version" : " 1.4 .0" ,
4
4
"author" : " stackstorm" ,
5
5
"summary" : " Puppet module to manage/configure StackStorm" ,
6
6
"license" : " Apache-2.0" ,
You can’t perform that action at this time.
0 commit comments