Skip to content

Commit

Permalink
20.2.0 release (#465)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdboom authored Nov 11, 2019
1 parent 41ef779 commit ff9e73b
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .buildconfig.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
libraryVersion: 20.1.0
libraryVersion: 20.2.0
groupId: org.mozilla.telemetry
projects:
glean-core:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

[Full changelog](https://github.com/mozilla/glean/compare/v20.1.0...master)

# v20.2.0 (2019-11-11)

[Full changelog](https://github.com/mozilla/glean/compare/v20.0.0...v20.1.0)

* In earlier 20.x.x releases, the version of glean-ffi was incorrectly built
against the wrong version of glean-core.

# v20.1.0 (2019-11-11)

[Full changelog](https://github.com/mozilla/glean/compare/v20.0.0...v20.1.0)
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion docs/dev/cut-a-new-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ These are the steps needed to cut a new release from latest master.
2. Add a new `# Unreleased Changes` on top
2. Bump the versions
* Rust crates: Bump `version` in [`glean-core/Cargo.toml`](https://github.com/mozilla/glean/blob/master/glean-core/Cargo.toml) and [`glean-core/ffi/Cargo.toml`](https://github.com/mozilla/glean/blob/master/glean-core/ffi/Cargo.toml).
* Rust crates: Bump `version` in [`glean-core/Cargo.toml`](https://github.com/mozilla/glean/blob/master/glean-core/Cargo.toml) and [`glean-core/ffi/Cargo.toml`](https://github.com/mozilla/glean/blob/master/glean-core/ffi/Cargo.toml). **NOTE:** There are two versions to update in `glean-core/ffi/Cargo.toml`.
* Kotlin package: Bump `libraryVersion` in the top-level [.buildconfig.yml](https://github.com/mozilla/glean/blob/master/.buildconfig.yml) file.
* Gradle plugin: Bump `project.ext.gleanVersion` in [`GleanGradlePlugin.groovy`](https://github.com/mozilla/glean/blob/master/gradle-plugin/src/main/groovy/mozilla/telemetry/glean-gradle-plugin/GleanGradlePlugin.groovy).
* Be sure you're following semver, and if in doubt, ask.
Expand Down
2 changes: 1 addition & 1 deletion glean-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glean-core"
version = "20.1.0"
version = "20.2.0"
authors = ["Jan-Erik Rediger <[email protected]>", "The Glean Team <[email protected]>"]
description = "A modern Telemetry library"
repository = "https://github.com/mozilla/glean"
Expand Down
4 changes: 2 additions & 2 deletions glean-core/ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glean-ffi"
version = "20.1.0"
version = "20.2.0"
authors = ["Jan-Erik Rediger <[email protected]>", "The Glean Team <[email protected]>"]
description = "FFI layer for Glean, a modern Telemetry library"
repository = "https://github.com/mozilla/glean"
Expand Down Expand Up @@ -34,7 +34,7 @@ uuid = { version = "0.8.1", features = ["v4"] }

[dependencies.glean-core]
path = ".."
version = "20.0.0-alpha.0"
version = "20.2.0"

[target.'cfg(target_os = "android")'.dependencies]
android_logger = { version = "0.8.5", default-features = false }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ subprocess.check_call([
}

void apply(Project project) {
project.ext.glean_version = "20.1.0"
project.ext.glean_version = "20.2.0"

File condaDir = setupPythonEnvironmentTasks(project)
project.ext.set("gleanCondaDir", condaDir)
Expand Down

0 comments on commit ff9e73b

Please sign in to comment.