Skip to content

Commit d99ed30

Browse files
feat(4.2.1): Release (#148)
Co-authored-by: Rafael Lins <[email protected]>
1 parent b23f19f commit d99ed30

5 files changed

+11
-12
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
> Mostly notable changes from version to version. Some stuff might go undocumented. If you find something that you think
77
> should be documented, please open an [issue](https://github.com/g0dkar/qrcode-kotlin/issues) :)
88
9-
## 4.2.0 - Latest
9+
## 4.2.1 - Latest
1010

1111
- Fixed issue with the Error Correction being ignored (thanks [slaha](https://github.com/slaha)!)
1212
- Updated libs versions

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ other:
4747

4848
```groovy
4949
// Use this for both Android and JVM
50-
implementation("io.github.g0dkar:qrcode-kotlin:4.2.0")
50+
implementation("io.github.g0dkar:qrcode-kotlin:4.2.1")
5151
```
5252

5353
**Maven - JVM:**
@@ -56,7 +56,7 @@ implementation("io.github.g0dkar:qrcode-kotlin:4.2.0")
5656
<dependency>
5757
<groupId>io.github.g0dkar</groupId>
5858
<artifactId>qrcode-kotlin-jvm</artifactId>
59-
<version>4.2.0</version>
59+
<version>4.2.1</version>
6060
</dependency>
6161
```
6262

@@ -66,14 +66,14 @@ implementation("io.github.g0dkar:qrcode-kotlin:4.2.0")
6666
<dependency>
6767
<groupId>io.github.g0dkar</groupId>
6868
<artifactId>qrcode-kotlin-android</artifactId>
69-
<version>4.2.0</version>
69+
<version>4.2.1</version>
7070
</dependency>
7171
```
7272

7373
**NodeJS:**
7474

7575
```shell
76-
npm install [email protected].0
76+
npm install [email protected].1
7777
```
7878

7979
**Browser:**

README.pt-br.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ do [NPM JS](https://www.npmjs.com/package/qrcode-kotlin), portanto basta adicion
4646

4747
```groovy
4848
// Use esse tanto para Android quanto para a JVM
49-
implementation("io.github.g0dkar:qrcode-kotlin:4.2.0")
49+
implementation("io.github.g0dkar:qrcode-kotlin:4.2.1")
5050
```
5151

5252
**Maven - JVM:**
@@ -55,7 +55,7 @@ implementation("io.github.g0dkar:qrcode-kotlin:4.2.0")
5555
<dependency>
5656
<groupId>io.github.g0dkar</groupId>
5757
<artifactId>qrcode-kotlin-jvm</artifactId>
58-
<version>4.2.0</version>
58+
<version>4.2.1</version>
5959
</dependency>
6060
```
6161

@@ -65,14 +65,14 @@ implementation("io.github.g0dkar:qrcode-kotlin:4.2.0")
6565
<dependency>
6666
<groupId>io.github.g0dkar</groupId>
6767
<artifactId>qrcode-kotlin-android</artifactId>
68-
<version>4.2.0</version>
68+
<version>4.2.1</version>
6969
</dependency>
7070
```
7171

7272
**NodeJS:**
7373

7474
```shell
75-
npm install [email protected].0
75+
npm install [email protected].1
7676
```
7777

7878
**Browser:**

build.gradle.kts

+1-2
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,7 @@ val ossrhPassword = properties.getOrDefault("ossrhPassword", System.getenv("OSSR
217217
val npmAccessKey = properties.getOrDefault("npmAccessKey", System.getenv("NPM_ACCESSKEY"))?.toString()
218218

219219
nexusPublishing {
220-
// Workaround from https://github.com/gradle-nexus/publish-plugin/issues/220
221-
this.repositories {
220+
repositories {
222221
sonatype {
223222
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
224223
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=4.2.0
1+
version=4.2.1
22
kotlin.code.style=official
33

44
# JS

0 commit comments

Comments
 (0)