Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
sargunv committed Nov 25, 2024
1 parent 40708e6 commit 423b246
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: macos-latest
environment:
name: maven-central
url: https://central.sonatype.com/artifact/dev.sargunv.maplibre-compose/maplibre-compose
url: https://central.sonatype.com/namespace/dev.sargunv.maplibre-compose
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Desktop and Web are not yet supported.
## Usage

This library is published
via [Maven Central](https://central.sonatype.com/artifact/dev.sargunv.maplibre-compose/maplibre-compose), and snapshot
via [Maven Central](https://central.sonatype.com/namespace/dev.sargunv.maplibre-compose), and snapshot
builds are additionally available
on GitHub Packages.

Expand Down
4 changes: 2 additions & 2 deletions demo-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {
alias(libs.plugins.spotless)
}

version = "0.1.0"
version = project.properties["LIBRARY_VERSION"]!!.toString()

android {
namespace = "dev.sargunv.maplibrecompose.demoapp"
Expand All @@ -26,7 +26,7 @@ android {
minSdk = libs.versions.android.minSdk.get().toInt()
targetSdk = libs.versions.android.targetSdk.get().toInt()
versionCode = 1
versionName = "0.1.0"
versionName = project.properties["LIBRARY_VERSION"]!!.toString()
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
packaging { resources { excludes += "/META-INF/{AL2.0,LGPL2.1}" } }
Expand Down
2 changes: 1 addition & 1 deletion demo-app/demo_app.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'demo_app'
spec.version = '0.1.0'
spec.version = '0.1.1-SNAPSHOT'
spec.homepage = 'PLACEHOLDER HOMEPAGE'
spec.source = { :http=> ''}
spec.authors = ''
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
LIBRARY_VERSION=0.1.1-SNAPSHOT
kotlin.code.style=official
kotlin.daemon.jvmargs=-Xmx2048M
# Blocker: https://github.com/diffplug/spotless/issues/2347
Expand Down
4 changes: 2 additions & 2 deletions iosApp/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- demo_app (0.1.0):
- demo_app (0.1.1-SNAPSHOT):
- MapLibre (= 6.8.1)
- MapLibre (6.8.1)

Expand All @@ -15,7 +15,7 @@ EXTERNAL SOURCES:
:path: "../demo-app"

SPEC CHECKSUMS:
demo_app: f8c899284a2d84aaaf80718322a27c5976c42687
demo_app: 6a2ee1ca6577a342a7fce1edcfe6aa7270d36663
MapLibre: 46c5f2254df2ea03bcd097778bb19c92207d8c2a

PODFILE CHECKSUM: faffe0b5720ea7a96818a908bd93100321d4e51f
Expand Down
2 changes: 1 addition & 1 deletion lib/maplibre-compose/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {

group = "dev.sargunv.maplibre-compose"

version = "0.1.0"
version = project.properties["LIBRARY_VERSION"]!!.toString()

android {
namespace = "dev.sargunv.maplibrecompose"
Expand Down

0 comments on commit 423b246

Please sign in to comment.