Skip to content

Commit

Permalink
release 0.2.0 – Binary Compatibility Validator for Kotlin/JS by Fluxo
Browse files Browse the repository at this point in the history
- Based on the generated TS definitions.
- Has support for Kotlin/JS non-KMP projects.
- Compatible with BCV 0.8 - 0.13+

Initially made for the Fluxo state management framework, now published for general use:
https://github.com/fluxo-kt/fluxo

See README for the usage instructions:
https://github.com/fluxo-kt/fluxo-bcv-js#how-to-use

Signed-off-by: Artyom Shendrik <[email protected]>
  • Loading branch information
amal committed Sep 16, 2023
1 parent d570072 commit 59bff64
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
## Unreleased

[//]: # (Changed, Added, Removed, Fixed)
- ...


## [0.2.0] - 2023-09-16

_Minor update release._

### Changed
- Updated the [README.md](README.md).
Expand All @@ -30,6 +36,7 @@

## Notes

[0.2.0]: https://github.com/fluxo-kt/fluxo-bcv-js/releases/tag/v0.2.0
[0.1.0]: https://github.com/fluxo-kt/fluxo-bcv-js/releases/tag/v0.1.0
[0.0.1-rc]: https://github.com/fluxo-kt/fluxo-bcv-js/releases/tag/v0.0.1-rc

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Compatibility tested with:

| Version | BCV | Kotlin | Gradle |
|:-------:|:----------:|:-------:|:------:|
| 0.1.0 | 0.8 - 0.13 | 1.6.20+ | 7.4+ |
| 0.2.0 | 0.8 - 0.13 | 1.6.20+ | 7.4+ |


### How to use
Expand All @@ -52,7 +52,7 @@ Compatibility tested with:
plugins {
kotlin("multiplatform") version "1.9.10" // <-- multiplatform or js, versions from 1.6.20 to 1.9
id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.13.2" // <-- 0.8 .. 0.13
id("io.github.fluxo-kt.binary-compatibility-validator-js") version "0.1.0" // <-- add here
id("io.github.fluxo-kt.binary-compatibility-validator-js") version "0.2.0" // <-- add here
}
kotlin {
js(IR) {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

[versions]

fluxoBcvJs = "0.1.0"
fluxoBcvJs = "0.2.0"

# Public API management tool
# https://github.com/Kotlin/binary-compatibility-validator/releases
Expand Down

0 comments on commit 59bff64

Please sign in to comment.