Skip to content

Commit

Permalink
Bumped version to 38.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
badboy committed May 12, 2021
1 parent f610f34 commit 5c95689
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .buildconfig.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
libraryVersion: 37.0.0
libraryVersion: 38.0.0
groupId: org.mozilla.telemetry
projects:
glean:
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Unreleased changes

[Full changelog](https://github.com/mozilla/glean/compare/v37.0.0...main)
[Full changelog](https://github.com/mozilla/glean/compare/v38.0.0...main)

# v38.0.0 (2021-05-12)

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

* General
* Update documentation to recommend using Glean Dictionary instead of metrics.md ([#1604](https://github.com/mozilla/glean/pull/1604))
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.

6 changes: 3 additions & 3 deletions DEPENDENCIES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3248,9 +3248,9 @@ THE SOFTWARE.

The following text applies to code linked from these dependencies:

* [glean 37.0.0]( https://github.com/mozilla/glean )
* [glean-core 37.0.0]( https://github.com/mozilla/glean )
* [glean-ffi 37.0.0]( https://github.com/mozilla/glean )
* [glean 38.0.0]( https://github.com/mozilla/glean )
* [glean-core 38.0.0]( https://github.com/mozilla/glean )
* [glean-ffi 38.0.0]( https://github.com/mozilla/glean )
* [zeitstempel 0.1.1]( https://github.com/badboy/zeitstempel )


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 = "37.0.0"
version = "38.0.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
2 changes: 1 addition & 1 deletion glean-core/csharp/Glean/Glean.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
While we're still testing, mark this as a pre-release package.
See https://docs.microsoft.com/en-us/nuget/concepts/package-versioning#pre-release-versions
-->
<Version>37.0.0</Version>
<Version>38.0.0</Version>
<RootNamespace>Mozilla.Glean</RootNamespace>
<PackageId>Mozilla.Telemetry.Glean</PackageId>
<PackageProjectUrl>https://github.com/mozilla/glean/</PackageProjectUrl>
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 = "37.0.0"
version = "38.0.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 @@ -36,7 +36,7 @@ once_cell = "1.2.0"

[dependencies.glean-core]
path = ".."
version = "37.0.0"
version = "38.0.0"

[target.'cfg(target_os = "android")'.dependencies]
android_logger = { version = "0.9.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion glean-core/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
history = history_file.read()

# glean version. Automatically updated by the bin/prepare_release.sh script
version = "37.0.0"
version = "38.0.0"

requirements = [
"cffi>=1.13.0",
Expand Down
4 changes: 2 additions & 2 deletions glean-core/rlb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glean"
version = "37.0.0"
version = "38.0.0"
authors = ["Jan-Erik Rediger <[email protected]>", "The Glean Team <[email protected]>"]
description = "Glean SDK Rust language bindings"
repository = "https://github.com/mozilla/glean"
Expand All @@ -22,7 +22,7 @@ maintenance = { status = "actively-developed" }

[dependencies.glean-core]
path = ".."
version = "37.0.0"
version = "38.0.0"

[dependencies]
crossbeam-channel = "0.5"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ except:
void apply(Project project) {
isOffline = project.gradle.startParameter.offline

project.ext.glean_version = "37.0.0"
project.ext.glean_version = "38.0.0"

// Print the required glean_parser version to the console. This is
// offline builds, and is mentioned in the documentation for offline
Expand Down

0 comments on commit 5c95689

Please sign in to comment.