Skip to content

Commit

Permalink
Bump version of maven coordinates to 0.6.0 to prepare for release. (#53)
Browse files Browse the repository at this point in the history
* Bump version of maven coordinates to 0.6.0 to prepare for release.

* Upgrade Bazel.
  • Loading branch information
dinowernli committed Nov 26, 2022
1 parent 8b4d92e commit b2d7390
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/actions/install/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ runs:
- name: Install Bazel (linux)
run: |
if [ "$RUNNER_OS" == "macOS" ]; then
curl -L -O "https://github.com/bazelbuild/bazel/releases/download/4.2.1/bazel-4.2.1-installer-darwin-x86_64.sh"
chmod a+x ./bazel-4.2.1-installer-darwin-x86_64.sh
./bazel-4.2.1-installer-darwin-x86_64.sh
curl -L -O "https://github.com/bazelbuild/bazel/releases/download/5.3.2/bazel-5.3.2-installer-darwin-x86_64.sh"
chmod a+x ./bazel-5.3.2-installer-darwin-x86_64.sh
./bazel-5.3.2-installer-darwin-x86_64.sh
elif [ "$RUNNER_OS" == "Linux" ]; then
wget 'https://github.com/bazelbuild/bazel/releases/download/4.2.1/bazel_4.2.1-linux-x86_64.deb'
chmod +x bazel_4.2.1-linux-x86_64.deb
sudo dpkg -i bazel_4.2.1-linux-x86_64.deb
wget 'https://github.com/bazelbuild/bazel/releases/download/5.3.2/bazel_5.3.2-linux-x86_64.deb'
chmod +x bazel_5.3.2-linux-x86_64.deb
sudo dpkg -i bazel_5.3.2-linux-x86_64.deb
else
echo 'Unrecognized OS'
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bazel_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ jobs:

- name: Run tests
run: |
bazel test //src/...
bazel test //src/... --incompatible_java_common_parameters=false
bazel build //:maven_export_lib.publish
2 changes: 1 addition & 1 deletion BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ load("@rules_jvm_external//:defs.bzl", "java_export")

java_export(
name = "maven_export_lib",
maven_coordinates = "me.dinowernli:java-grpc-prometheus:0.5.0",
maven_coordinates = "me.dinowernli:java-grpc-prometheus:0.6.0",
pom_template = "//:pom_template.xml",
# Make sure these show up in the dependencies of the resulting POM.
runtime_deps = [
Expand Down

0 comments on commit b2d7390

Please sign in to comment.