Skip to content

Commit

Permalink
- chg: release changes
Browse files Browse the repository at this point in the history
  • Loading branch information
menion committed Nov 27, 2023
1 parent 67c87c2 commit 09bbd8e
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 8 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- updated `GeoDataExtra.RTE_TYPES` values
- updated dependencies


## [0.9.50]
### Changed
- removed custom implementation of the Logger and using public "Asamm logger" instead
Expand Down
24 changes: 19 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Library for [Locus Map](https://www.locusmap.app) application for Android device

## Current version

Latest stable LT version: **0.9.50**
Latest stable LT version: **0.9.51**
Available versions on the maven repository: [here](https://repo1.maven.org/maven2/com/asamm/).

How to **update to new 0.9.x** version? More about it [here](https://github.com/asamm/locus-api/wiki/Update-to-version-0.9.0).
Expand Down Expand Up @@ -47,12 +47,26 @@ In most cases, Android version is the only interesting one here.

## Quick start

Add [JitPack](https://jitpack.io) repository to your root `build.gradle` module config. This is currently necessary for the
internal logger dependency.

```gradle.kts
allprojects {
repositories {
maven(url = "https://jitpack.io")
}
}
```

Add dependency to your `build.gradle` module config

```gradle
```gradle.kts
dependencies {
// get locus API
compile 'com.asamm:locus-api-android:[latest]'
// get Locus API (Java only)
implementation('com.asamm:locus-api-core:[latest]')

// or Locus Android API (for Android apps)
implementation('com.asamm:locus-api-android:[latest]')
}
```

Expand All @@ -61,7 +75,7 @@ Check for sample use-cases in Locus API - Android sample project.
## New version release steps

1. Raise version in the `gradle.properties`
* `API_CODE` (+1)
* `API_CODE`
* `API_VERSION`
2. update version also in this "README" file (line 19)
3. update "CHANGELOG" news file
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ GRADLE_NEXUS_STAGING = 0.30.0
LOCUS_LOGGER = 2.2

# Version
API_CODE = 97
API_VERSION = 0.9.50
API_CODE = 98
API_VERSION = 0.9.51

# ANDROID SUPPORT LIBS
# https://developer.android.com/topic/libraries/support-library/revisions.html
Expand Down

0 comments on commit 09bbd8e

Please sign in to comment.