Skip to content

Commit

Permalink
Merge branch 'main' into cindy/native-profile
Browse files Browse the repository at this point in the history
  • Loading branch information
cindy-peng authored Jan 16, 2024
2 parents b744a98 + 4704148 commit ac6150a
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog


## [0.130.30-alpha](https://github.com/googleapis/java-logging-logback/compare/v0.130.29-alpha...v0.130.30-alpha) (2024-01-11)


### Dependencies

* Update dependency com.google.cloud:google-cloud-logging to v3.15.15 ([#1242](https://github.com/googleapis/java-logging-logback/issues/1242)) ([fea658a](https://github.com/googleapis/java-logging-logback/commit/fea658ac5116e5e74cb594ac3f8cc5ce215bbd20))

## [0.130.29-alpha](https://github.com/googleapis/java-logging-logback/compare/v0.130.28-alpha...v0.130.29-alpha) (2024-01-10)


Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,20 @@ If you are using Maven, add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-logging-logback</artifactId>
<version>0.130.30-alpha</version>
<version>0.130.29-alpha</version>
</dependency>
```

If you are using Gradle without BOM, add this to your dependencies:

```Groovy
implementation 'com.google.cloud:google-cloud-logging-logback:0.130.30-alpha'
implementation 'com.google.cloud:google-cloud-logging-logback:0.130.29-alpha'
```

If you are using SBT, add this to your dependencies:

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-logging-logback" % "0.130.30-alpha"
libraryDependencies += "com.google.cloud" % "google-cloud-logging-logback" % "0.130.29-alpha"
```
<!-- {x-version-update-end} -->

Expand Down Expand Up @@ -299,7 +299,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-logging-logback/java11.html
[stability-image]: https://img.shields.io/badge/stability-preview-yellow
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-logging-logback.svg
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-logging-logback/0.130.30-alpha
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-logging-logback/0.130.29-alpha
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>google-cloud-logging-logback</artifactId>
<version>0.130.30-alpha-SNAPSHOT</version><!-- {x-version-update:google-cloud-logging-logback:current} -->
<version>0.130.30-alpha</version><!-- {x-version-update:google-cloud-logging-logback:current} -->
<packaging>jar</packaging>
<name>Google Cloud Logging Logback Appender</name>
<url>https://github.com/googleapis/java-logging-logback</url>
Expand All @@ -17,7 +17,7 @@
<logback.version>1.2.13</logback.version>
<easymock.version>5.2.0</easymock.version>
<truth.version>1.2.0</truth.version>
<logging.version>3.15.14</logging.version>
<logging.version>3.15.15</logging.version>
<slf4j.version>1.7.36</slf4j.version>
<google.api-common.version>1.10.1</google.api-common.version>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion samples/install-without-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-logging-logback</artifactId>
<version>0.130.28-alpha</version>
<version>0.130.29-alpha</version>
</dependency>
<!-- [END logging-logback_install_without_bom] -->

Expand Down
2 changes: 1 addition & 1 deletion samples/snapshot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-logging-logback</artifactId>
<version>0.130.30-alpha-SNAPSHOT</version>
<version>0.130.30-alpha</version>
</dependency>
<!-- {x-version-update-end} -->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public class LoggingAppender extends UnsynchronizedAppenderBase<ILoggingEvent> {
// See
// https://github.com/googleapis/release-please/blob/main/docs/customizing.md#updating-arbitrary-files
// {x-version-update-start:google-cloud-logging-logback:current}
public static final String DEFAULT_INSTRUMENTATION_VERSION = "0.130.30-alpha-SNAPSHOT";
public static final String DEFAULT_INSTRUMENTATION_VERSION = "0.130.30-alpha";
// {x-version-update-end}
private static boolean instrumentationAdded = false;
private static final Object instrumentationLock = new Object();
Expand Down
2 changes: 1 addition & 1 deletion versions.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Format:
# module:released-version:current-version

google-cloud-logging-logback:0.130.29-alpha:0.130.30-alpha-SNAPSHOT
google-cloud-logging-logback:0.130.30-alpha:0.130.30-alpha

0 comments on commit ac6150a

Please sign in to comment.