Skip to content

Commit

Permalink
Prepare 4.8.10-0-1.4.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Dec 20, 2023
1 parent e8e6396 commit ef2a9d7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## Version 4.8.10-0-1.4.4 (2023-12-20)
- Updates dependencies
- `kmp-tor-binary` -> `4.8.10-0`

## Version 4.8.6-0-1.4.4 (2023-09-29)
- Updates dependencies
- `atomicfu` -> `0.21.0`
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Add dependency
// build.gradle.kts

dependencies {
val vTor = "4.8.6-0"
val vTor = "4.8.10-0"
val vKmpTor = "1.4.4"

implementation("io.matthewnelson.kotlin-components:kmp-tor:$vTor-$vKmpTor")
Expand All @@ -35,7 +35,7 @@ dependencies {
// build.gradle
dependencies {
def vTor = '4.8.6-0'
def vTor = '4.8.10-0'
def vKmpTor = '1.4.4'
implementation "io.matthewnelson.kotlin-components:kmp-tor:$vTor-$vKmpTor"
Expand Down Expand Up @@ -95,7 +95,7 @@ dependencies {
// build.gradlew.kts

dependencies {
val vTor = "4.8.6-0"
val vTor = "4.8.10-0"
val vKmpTor = "1.4.4"

implementation("io.matthewnelson.kotlin-components:kmp-tor:$vTor-$vKmpTor")
Expand Down Expand Up @@ -132,7 +132,7 @@ can express the `TorConfig.Setting.Ports.Control` setting when providing your co
// build.gradle

dependencies {
def vTor = '4.8.6-0'
def vTor = '4.8.10-0'
def vKmpTor = '1.4.4'

implementation "io.matthewnelson.kotlin-components:kmp-tor:$vTor-$vKmpTor"
Expand Down Expand Up @@ -218,7 +218,7 @@ public class Example2 {
<!-- TAG_VERSION -->
<!-- If Tor version was updated, don't forget to update [badge-kmp-tor-binary] -->

[badge-latest-release]: https://img.shields.io/badge/latest--release-4.8.6--0--1.4.4-5d2f68.svg?logo=torproject&style=flat&logoColor=5d2f68
[badge-latest-release]: https://img.shields.io/badge/latest--release-4.8.10--0--1.4.4-5d2f68.svg?logo=torproject&style=flat&logoColor=5d2f68
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat

<!-- TAG_DEPENDENCIES -->
Expand All @@ -227,7 +227,7 @@ public class Example2 {
[badge-coroutines]: https://img.shields.io/badge/coroutines-1.7.3-blue.svg?logo=kotlin
[badge-encoding]: https://img.shields.io/badge/encoding-2.0.0-blue.svg?style=flat
[badge-parcelize]: https://img.shields.io/badge/parcelize-0.1.2-blue.svg?style=flat
[badge-kmp-tor-binary]: https://img.shields.io/badge/kmp--tor--binary-4.8.6--0-5d2f68.svg?logo=torproject&style=flat&logoColor=5d2f68
[badge-kmp-tor-binary]: https://img.shields.io/badge/kmp--tor--binary-4.8.10--0-5d2f68.svg?logo=torproject&style=flat&logoColor=5d2f68

<!-- TAG_PLATFORMS -->
[badge-platform-android]: http://img.shields.io/badge/-android-6EDB8D.svg?style=flat
Expand Down
10 changes: 5 additions & 5 deletions build-environment/src/main/kotlin/kmp/tor/env.kt
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ package kmp.tor
@Suppress("ClassName")
object env {
// Must be either "-SNAPSHOT" || ""
private const val SNAPSHOT = "-SNAPSHOT"
private const val SNAPSHOT = ""

private const val MANAGER_VERSION_NAME = "1.4.5"
private const val MANAGER_VERSION_NAME = "1.4.4"
// 1.0.0-alpha1 == 01_00_00_11
// 1.0.0-alpha2 == 01_00_00_12
// 1.0.0-beta1 == 01_00_00_21
Expand All @@ -31,11 +31,11 @@ object env {
// 1.15.1 == 01_15_01_99
private const val MANAGER_VERSION_CODE = /*0*/1_04_05_99

private const val BINARY_VERSION_NAME = "4.8.6-0"
private const val BINARY_VERSION_NAME = "4.8.10-0"
// 4.6.9-0 == 00_04_06_09_00
// 4.6.9-1 == 00_04_06_09_01
// 4.6.9-2 == 00_04_06_09_02
private const val BINARY_VERSION_CODE = /*00_0*/4_08_06_00
private const val BINARY_VERSION_CODE = /*00_0*/4_08_10_00

/**
* Binaries exist in a different repo. Building against the staged
Expand Down Expand Up @@ -80,7 +80,7 @@ object env {
* Indicates that the release is only bumping Tor versions,
* and to hold publication for all other modules.
* */
const val isBinaryRelease = false
const val isBinaryRelease = true
const val holdPublication = false

object version {
Expand Down

0 comments on commit ef2a9d7

Please sign in to comment.