Skip to content

Commit 07c9575

Browse files
committed
Prepare version 0.1.0
1 parent f2b97a6 commit 07c9575

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22

33
## [Unreleased]
44

5+
6+
## [0.1.0] - 2021-11-10
7+
58
Initial release
69

710

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

RELEASING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Releasing
22

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.
44

55
2. Update the `CHANGELOG.md`:
66
1. Change the `Unreleased` header to the release version.
@@ -13,7 +13,7 @@
1313
4. Commit
1414

1515
```
16-
$ git commit -am "Prepare version X.Y.X"
16+
$ git commit -am "Prepare version X.Y.Z"
1717
```
1818

1919
5. Tag

molecule/build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,12 @@ subprojects {
8787
}
8888
}
8989
}
90+
91+
plugins.withId('signing') {
92+
signing {
93+
def signingKey = findProperty('signingKey')
94+
def signingPassword = ''
95+
useInMemoryPgpKeys(signingKey, signingPassword)
96+
}
97+
}
9098
}

molecule/gradle.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
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
35

46
POM_DESCRIPTION=Build a Flow or Observable stream using Jetpack Compose.
57

0 commit comments

Comments
 (0)