Skip to content
Open
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
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
".": "0.2.0",
"packages/crosswake-shell-core-ios": "0.2.0",
"packages/crosswake-shell-core-android": "0.2.0",
".": "0.2.1",
"packages/crosswake-shell-core-ios": "0.2.1",
"packages/crosswake-shell-core-android": "0.2.1",
"packages/crosswake_rulestead": "0.1.0",
"packages/crosswake_rindle": "0.1.0",
"packages/crosswake_sigra": "0.1.1",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ container.
- Elixir `~> 1.19`
- Phoenix `~> 1.8`
- Phoenix LiveView `~> 1.1`
- Crosswake version `0.2.0` <!-- x-release-please-version -->
- Crosswake version `0.2.1` <!-- x-release-please-version -->
- Generated non-local native shell core coordinates resolve at the Crosswake package version.

See [mix.exs](mix.exs) and [guides/support_matrix.md](guides/support_matrix.md) for
Expand Down
4 changes: 2 additions & 2 deletions examples/android_shell_host/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {
minSdk 30
targetSdk 35
versionCode 1
versionName "0.2.0" // x-release-please-version
versionName "0.2.1" // x-release-please-version
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

Expand Down Expand Up @@ -73,7 +73,7 @@ android {
}

dependencies {
implementation 'io.github.sztheory:crosswake-shell-core-android:0.2.0' // x-release-please-version
implementation 'io.github.sztheory:crosswake-shell-core-android:0.2.1' // x-release-please-version
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.activity:activity-compose:1.9.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@
"remote"
]
},
"crosswake_version": "0.2.0",
"crosswake_version": "0.2.1",
"generated_at": "2026-06-02T01:19:43Z",
"host": {
"live_view_version": "~> 1.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
repositoryURL = "https://github.com/szTheory/crosswake-shell-core-ios.git";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 0.2.0; /* x-release-please-version */
minimumVersion = 0.2.1; /* x-release-please-version */
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down
2 changes: 1 addition & 1 deletion examples/ios_shell_host/Fixtures/crosswake_manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@
"remote"
]
},
"crosswake_version": "0.2.0",
"crosswake_version": "0.2.1",
"generated_at": "2026-06-02T01:19:43Z",
"host": {
"live_view_version": "~> 1.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/native_evidence/evidence-manifest.example.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"schema_version": "1.0.0",
"crosswake_version": "0.2.0",
"crosswake_version": "0.2.1",
"commit_sha": "example-commit-sha",
"source_job": "native-collateral-advisory",
"captured_at": "2026-06-19T00:00:00.000Z",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"schema_version": "1.0.0",
"crosswake_version": "0.2.0",
"crosswake_version": "0.2.1",
"commit_sha": "example-commit-sha",
"source_job": "route-tour-proof",
"captured_at": "2026-07-12T00:00:00.000Z",
Expand Down
2 changes: 1 addition & 1 deletion examples/phoenix_host/priv/crosswake/install_manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"schema_version": 1,
"crosswake_version": "0.2.0",
"crosswake_version": "0.2.1",
"router_path": "lib/crosswake_example/router.ex",
"web_module": "CrosswakeExample",
"policy_module": "CrosswakeExample.Crosswake.Policy",
Expand Down
2 changes: 1 addition & 1 deletion guides/android_uat.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Android Device-UAT Checklist

**Last verified against:** Crosswake v0.2.0 on Android 15 (API 35) <!-- x-release-please-version -->
**Last verified against:** Crosswake v0.2.1 on Android 15 (API 35) <!-- x-release-please-version -->

## What This Proves

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Crosswake.MixProject do
use Mix.Project

@version "0.2.0" # x-release-please-version
@version "0.2.1" # x-release-please-version
@source_url "https://github.com/szTheory/crosswake"

def project do
Expand Down
2 changes: 1 addition & 1 deletion packages/crosswake-shell-core-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
id("com.vanniktech.maven.publish") version "0.31.0"
}

version = "0.2.0" // x-release-please-version
version = "0.2.1" // x-release-please-version

android {
namespace = "dev.crosswake.shell.core"
Expand Down
Loading