Skip to content

Commit acff6f4

Browse files
committed
Update readme files
1 parent 92df626 commit acff6f4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Use RxKotlin 1.x versions to target RxJava 1.x.
5151

5252
Use RxKotlin 2.x versions to target RxJava 2.x.
5353

54-
The maintainers do not update the RxJava dependency version for every RxJava release, so you should explicitly add the desired RxJava dependency version to your `pom.xml` or `build.gradle`.
54+
The maintainers do not update the RxJava dependency version for every RxJava release, so you should explicitly add the desired RxJava dependency version to your `pom.xml` or `build.gradle(.kts)`.
5555

5656
## Build
5757

@@ -78,8 +78,8 @@ Example for Maven:
7878

7979
and for Gradle:
8080

81-
```groovy
82-
implementation 'io.reactivex.rxjava2:rxkotlin:x.y.z'
81+
```kotlin
82+
implementation("io.reactivex.rxjava2:rxkotlin:x.y.z")
8383
```
8484

8585
### RxKotlin 1.x
@@ -96,8 +96,8 @@ Example for Maven:
9696

9797
and for Gradle:
9898

99-
```groovy
100-
implementation 'io.reactivex:rxkotlin:x.y.z'
99+
```kotlin
100+
implementation("io.reactivex:rxkotlin:x.y.z")
101101
```
102102

103103
### Building with JitPack

RELEASING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Release Process
22
===============
33

4-
1. Ensure `VERSION_NAME` in `gradle.properties` is set to the version you want to release.
4+
1. Ensure `version` in `gradle.properties` is set to the version you want to release.
55
2. Add an entry in `CHANGELOG.md` with the changes for the release.
66
3. Update `README.md` with the version about to be released. Also update the RxJava version in
77
this file to its latest.
8-
4. Update the RxJava version in `rxkotlin/build.gradle` to its latest. (We tell people that we
8+
4. Update the RxJava version in `rxkotlin/build.gradle.kts` to its latest. (We tell people that we
99
won't be tracking RxJava releases, and we don't, but we do it anyway when we are releasing for
1010
those who ignore the advice.)
1111
5. Commit: `git commit -am "Prepare version X.Y.X"`
@@ -14,6 +14,6 @@ Release Process
1414
you just tagged version 1.0.4 you would set this value to 1.0.5. Do NOT append "-SNAPSHOT" to
1515
this value, it will be added automatically.
1616
8. Commit: `git commit -am "Prepare next development version."`
17-
9. Push: `git push && git push --tags`
17+
9. Push: `git push --follow-tags`
1818
10. Paste the `CHANGELOG.md` contents for this version into a Release on GitHub along with the
1919
Groovy for depending on the new version (https://github.com/ReactiveX/RxKotlin/releases).

0 commit comments

Comments
 (0)