Skip to content

Bump version to 0.2.4 #55

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ env:
jobs:
run_tests:
name: Run tests
if: github.ref == 'refs/heads/main'
runs-on: macos-latest
steps:
- name: Checkout repository
Expand Down
4 changes: 2 additions & 2 deletions JsonLogicKMP.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "JsonLogicKMP"
spec.version = "0.2.2"
spec.version = "0.2.4"
spec.summary = "Kotlin multiplatform JsonLogic"
spec.description = <<-DESC
* Kotlin multiplatform JsonLogic expressions evaluation engine
Expand All @@ -13,7 +13,7 @@ Pod::Spec.new do |spec|
spec.ios.deployment_target = "13.0"

spec.source = { :http => "#{spec.homepage}/releases/download/#{spec.version}/#{spec.name}_xcframeworks.zip",
:sha256 => "91e53dae1f62e1c2fefcfcc474b37c6d87717046ae04d61e57b168b7e36c7739"
:sha256 => "a80dcb1fd915aa504a29acfed3e70537323474466a294d9a9ec5c7b9c4499eb2"
}

spec.subspec 'OperationsApi' do |operationsApi|
Expand Down
6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,14 @@ plugins {
id("signing")
id("io.gitlab.arturbosch.detekt") version Versions.detekt
id("io.github.gradle-nexus.publish-plugin") version Versions.nexus
id("pl.allegro.tech.build.axion-release")
}

apply(from = "versionConfig.gradle")

group = LibConfig.group
version = scmVersion.version

allprojects {
repositories {
google()
Expand Down