Skip to content
Draft
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
3 changes: 3 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,9 @@ jobs:
pushd rlb
cargo publish --verbose

pushd ../glean-sym
cargo publish --verbose

###########################################################################
# Android / Kotlin / Java

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion bin/prepare-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,19 @@ run $SED -i.bak -E \
"${WORKSPACE_ROOT}/${FILE}"
run rm "${WORKSPACE_ROOT}/${FILE}.bak"

### GLEAN SYM ###

# Update the version of the glean-sym dependency

FILE=glean-core/glean-sym/Cargo.toml
run $SED -i.bak -E \
-e "s/^version = \"[0-9a-z.-]+\"/version = \"${NEW_VERSION}\"/" \
"${WORKSPACE_ROOT}/${FILE}"
run rm "${WORKSPACE_ROOT}/${FILE}.bak"

### Update Cargo.lock

cargo update -p glean-core -p glean
cargo update -p glean-core -p glean -p glean-sym
cargo update --manifest-path glean-core/benchmark/Cargo.toml -p glean-core

run cargo update --manifest-path samples/glean-sym-test/Cargo.toml -p xul --precise glean-bundle
Expand Down
2 changes: 1 addition & 1 deletion glean-core/glean-sym/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glean-sym"
version = "0.1.0"
version = "69.0.0"
authors = ["The Glean Team <glean-team@mozilla.com>"]
description = "A Rust API on top of the Glean UniFFI C FFI"
repository = "https://github.com/mozilla/glean"
Expand Down
2 changes: 1 addition & 1 deletion samples/glean-sym-test/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading