Skip to content

Commit

Permalink
update dependencies (#26)
Browse files Browse the repository at this point in the history
* update dependencies

* bump version 1.0.3
110y authored May 26, 2020

Verified

This commit was signed with the committer’s verified signature.
thibaultleouay Thibault Le Ouay
1 parent f51a12e commit 6688fe8
Showing 7 changed files with 519 additions and 82 deletions.
2 changes: 1 addition & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "1.0.2"
version = "1.0.3"

load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "nogo")
load("@bazel_gazelle//:def.bzl", "gazelle")
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -19,7 +19,8 @@ dep: bin/bazelisk
bin/bazelisk run //:gazelle -- \
update-repos \
-from_file go.mod \
-to_macro bazel/deps.bzl%wrench_deps
-to_macro bazel/deps.bzl%wrench_deps \
-prune

.PHONY: build
build: bin/bazelisk
15 changes: 8 additions & 7 deletions WORKSPACE
Original file line number Diff line number Diff line change
@@ -3,21 +3,21 @@ load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")

http_archive(
name = "io_bazel_rules_go",
urls = ["https://github.com/bazelbuild/rules_go/releases/download/v0.20.2/rules_go-v0.20.2.tar.gz"],
urls = ["https://github.com/bazelbuild/rules_go/releases/download/v0.23.1/rules_go-v0.23.1.tar.gz"],
)

load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")

go_rules_dependencies()

go_register_toolchains(
go_version = "1.13.4",
go_version = "1.14.3",
nogo = "@//:nogo",
)

http_archive(
name = "bazel_gazelle",
urls = ["https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.19.1/bazel-gazelle-v0.19.1.tar.gz"],
urls = ["https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.21.0/bazel-gazelle-v0.21.0.tar.gz"],
)

load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies")
@@ -35,10 +35,6 @@ load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")

protobuf_deps()

load("//:bazel/deps.bzl", "wrench_deps")

wrench_deps()

http_archive(
name = "io_bazel_rules_docker",
strip_prefix = "rules_docker-0.12.1",
@@ -58,3 +54,8 @@ load(
)

_go_image_repos()

load("//:bazel/deps.bzl", "wrench_deps")

# gazelle:repository_macro bazel/deps.bzl%wrench_deps
wrench_deps()
Loading

0 comments on commit 6688fe8

Please sign in to comment.