Skip to content

Commit 1d20fdd

Browse files
committed
Skip docs for compose module (dokka issue with dependency)
1 parent 011569e commit 1d20fdd

12 files changed

Lines changed: 20 additions & 13 deletions

File tree

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if useLocalFramework {
1616
path: "./common/target/ios/libferrostar-rs.xcframework"
1717
)
1818
} else {
19-
let releaseTag = "0.48.0"
19+
let releaseTag = "0.48.1"
2020
let releaseChecksum = "49788cb2be58229a1ecc6b235b0077d3a9c004e04ecf33d1bbc79eddeded1e5b"
2121
binaryTarget = .binaryTarget(
2222
name: "FerrostarCoreRS",

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ ext {
2929

3030
allprojects {
3131
group = "com.stadiamaps.ferrostar"
32-
version = "0.48.0"
32+
version = "0.48.1"
3333
}

android/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ androidx-appcompat = "1.7.1"
1414
androidx-activity-compose = "1.12.4"
1515
compose = "2026.02.01"
1616
okhttp = "5.3.2"
17-
maplibre-compose = "1.4.1"
17+
maplibre-compose = "1.6.0"
1818
playServicesLocation = "21.3.0"
1919
junit = "4.13.2"
2020
junitVersion = "1.3.0"

android/maplibreui/build.gradle

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import com.vanniktech.maven.publish.AndroidSingleVariantLibrary
2+
import com.vanniktech.maven.publish.JavadocJar
3+
import com.vanniktech.maven.publish.SourcesJar
24

35
plugins {
46
alias libs.plugins.androidLibrary
@@ -64,7 +66,12 @@ mavenPublishing {
6466
signAllPublications()
6567
}
6668

67-
configure(new AndroidSingleVariantLibrary("release", true, true))
69+
configure(new AndroidSingleVariantLibrary(
70+
// Temporarily disable JavaDoc due to dokka issues with the Compose library using newer bytecode
71+
new JavadocJar.Empty(),
72+
new SourcesJar.Sources(),
73+
"release"
74+
))
6875

6976
apply from: "${rootProject.projectDir}/common-pom.gradle"
7077

common/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

common/ferrostar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lints.workspace = true
22

33
[package]
44
name = "ferrostar"
5-
version = "0.48.0"
5+
version = "0.48.1"
66
readme = "README.md"
77
description = "The core of modern turn-by-turn navigation."
88
keywords = ["navigation", "routing", "valhalla", "osrm"]

react-native/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stadiamaps/ferrostar-core-react-native",
3-
"version": "0.48.0",
3+
"version": "0.48.1",
44
"description": "Ferrostar React Native Core",
55
"main": "./lib/index.js",
66
"types": "./src/index.ts",

react-native/maplibreui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stadiamaps/ferrostar-maplibre-react-native",
3-
"version": "0.48.0",
3+
"version": "0.48.1",
44
"description": "Ferrostar React Native MapLibre UI",
55
"main": "./lib/index.js",
66
"types": "./src/index.ts",

react-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-ferrostar",
3-
"version": "0.48.0",
3+
"version": "0.48.1",
44
"description": "Ferrostar React Native",
55
"private": true,
66
"scripts": {

react-native/uniffi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stadiamaps/ferrostar-uniffi-react-native",
3-
"version": "0.48.0",
3+
"version": "0.48.1",
44
"description": "Ferrostar React Native Binding",
55
"source": "./src/index.tsx",
66
"main": "./lib/commonjs/index.js",

0 commit comments

Comments
 (0)