Skip to content

Commit

Permalink
Merge pull request #135 from ryanmoelter/release-0.5.1
Browse files Browse the repository at this point in the history
Release 0.5.1
  • Loading branch information
ryanmoelter authored Mar 13, 2024
2 parents 010a84d + 1388479 commit b99c3be
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 0.5.1
- Fix transitions showing when they shouldn't when `Journey`s are first shown.

## 0.5.0
- BREAKING: Add `Started` lifecycle state
- `Started` replaces `Shown` and represents "being drawn to the screen", but `Shown` now represents "on top of the backstack". `show()` and `hide()` are now effectively `navigatedTo()` and `navigatedFrom()` respectively.
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ add the following to your `libs.versions.toml`:

```toml
[versions]
magellanx = "0.5.0"
magellanx = "0.5.1"
# ...

[libraries]
Expand Down Expand Up @@ -77,15 +77,15 @@ If you don't want to use version catalogs, you can add the dependencies you need
[![Latest release on Jitpack](https://jitpack.io/v/com.ryanmoelter/magellanx.svg)](https://jitpack.io/#com.ryanmoelter/magellanx)

```kotlin
val magellanxVersion = "0.5.0"
val magellanxVersion = "0.5.1"
implementation("com.ryanmoelter.magellanx:magellanx-compose:${magellanxVersion}")
testImplementation("com.ryanmoelter.magellanx:magellanx-test:${magellanxVersion}")
```

Alternatively, if you only want the core library without the Compose implementation, you can use:

```kotlin
implementation("com.github.ryanmoelter.magellanx:magellanx-core:0.5.0")
implementation("com.github.ryanmoelter.magellanx:magellanx-core:0.5.1")
```

> Note: `magellanx-core` is included in and exposed by `magellanx-compose`, and `magellan-test` only
Expand All @@ -103,6 +103,7 @@ Magellan X uses the following dependencies, and since `0.2.0` is using

| Magellan X version | Kotlin version | Compose compiler version | Compose BOM | Tested compatible compose versions |
|--------------------|----------------|--------------------------|--------------|------------------------------------|
| `0.5.1` | `1.9.22` | `1.5.10` | `2024.02.02` | `1.6.3` |
| `0.5.0` | `1.9.22` | `1.5.10` | `2024.02.01` | `1.6.2` |
| `0.4.0` - `0.4.1` | `1.9.22` | `1.5.8` | `2024.01.00` | `1.6.0` |
| `0.3.0` - `0.3.1` | `1.9.21` | `1.5.7` | `2023.10.01` | `1.5.4` |
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.ryanmoelter.magellanx
VERSION_NAME=0.5.1-SNAPSHOT
VERSION_NAME=0.5.1

POM_DESCRIPTION=A simple, flexible, and practical navigation library for android using Jetpack Compose

Expand Down

0 comments on commit b99c3be

Please sign in to comment.