File tree Expand file tree Collapse file tree 4 files changed +19
-4
lines changed Expand file tree Collapse file tree 4 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+
6
+ ## [ 0.1.0] - 2021-11-10
7
+
5
8
Initial release
6
9
7
10
8
- [ Unreleased ] : https://github.com/cashapp/molecule/compare/000000...HEAD
11
+
12
+ [ 0.1.0 ] : https://github.com/cashapp/molecule/releases/tag/0.1.0
13
+ [ Unreleased ] : https://github.com/cashapp/molecule/compare/0.1.0...HEAD
Original file line number Diff line number Diff line change 1
1
# Releasing
2
2
3
- 1 . Update the ` VERSION_NAME ` in ` gradle.properties ` to the release version.
3
+ 1 . Update the ` VERSION_NAME ` in ` molecule/ gradle.properties` to the release version.
4
4
5
5
2 . Update the ` CHANGELOG.md ` :
6
6
1 . Change the ` Unreleased ` header to the release version.
13
13
4 . Commit
14
14
15
15
```
16
- $ git commit -am "Prepare version X.Y.X "
16
+ $ git commit -am "Prepare version X.Y.Z "
17
17
```
18
18
19
19
5 . Tag
Original file line number Diff line number Diff line change @@ -87,4 +87,12 @@ subprojects {
87
87
}
88
88
}
89
89
}
90
+
91
+ plugins. withId(' signing' ) {
92
+ signing {
93
+ def signingKey = findProperty(' signingKey' )
94
+ def signingPassword = ' '
95
+ useInMemoryPgpKeys(signingKey, signingPassword)
96
+ }
97
+ }
90
98
}
Original file line number Diff line number Diff line change 1
1
GROUP =app.cash.molecule
2
- VERSION_NAME =0.1.0-SNAPSHOT
2
+
3
+ # HEY! If you change the major version here be sure to update release.yaml doc target folder!
4
+ VERSION_NAME =0.1.0
3
5
4
6
POM_DESCRIPTION =Build a Flow or Observable stream using Jetpack Compose.
5
7
You can’t perform that action at this time.
0 commit comments