Skip to content

Commit bffebb7

Browse files
committed
release: 0.5.0
1 parent 838642a commit bffebb7

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

CHANGELOG.md

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

3-
## 0.2.0 (2022-10-24)
3+
## 0.5.0 (2022-10-24)
44

5-
No update notes.
5+
### Code Refactoring
6+
7+
- refactor with kotlin ([838642a4](https://github.com/ymind/jacksync/commit/838642a4bbf3a4b8d38e1520659a78d757d3688b))
68

CHANGELOG.zh-cn.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# 更新日志
22

3-
## 0.2.0 (2022-10-24)
3+
## 0.5.0 (2022-10-24)
44

5-
暂无更新说明。
5+
### Code Refactoring
6+
7+
- refactor with kotlin ([838642a4](https://github.com/ymind/jacksync/commit/838642a4bbf3a4b8d38e1520659a78d757d3688b))
68

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ dependencies {
4242
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
4343

4444
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
45-
implementation("com.fasterxml.jackson.core:jackson-databind:2.14.0-rc2")
45+
implementation("com.fasterxml.jackson.core:jackson-databind:2.13.4.2")
4646

4747
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine/
4848
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.9.1")
@@ -215,8 +215,8 @@ publishing {
215215

216216
repositories {
217217
maven {
218-
val releasesRepoUrl = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2")
219-
val snapshotsRepoUrl = uri("https://oss.sonatype.org/content/repositories/snapshots")
218+
val releasesRepoUrl = uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
219+
val snapshotsRepoUrl = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
220220

221221
url = if (version.toString().endsWith("SNAPSHOT", true)) snapshotsRepoUrl else releasesRepoUrl
222222

0 commit comments

Comments
 (0)