Skip to content

Release v0.1.3

Compare
Choose a tag to compare
@github-actions github-actions released this 29 Dec 23:51
· 360 commits to main since this release
835de80

What's Changed

  • Add workflow_dispatch to create_release.yml by @cgrindel in #17
  • Add generate_release_notes macro for project-specific release notes generation by @cgrindel in #18
  • Generate the entire workspace snippet using a template by @cgrindel in #19
  • Added assert_match and assert_no_match. by @cgrindel in #20
  • Fixed embedding issues with execute_binary and added binary_pkg by @cgrindel in #21
  • Added generate_workspace_snippet macro and updated generate_release_notes. by @cgrindel in #23
  • Implemented update_readme.sh and update_readme macro by @cgrindel in #24
  • Added update_readme.yml Github Actions workflow by @cgrindel in #25
  • Fixed update_readme.yml and added missing strip_prefix to generate_workspace_snippet. by @cgrindel in #26
  • Added PR creation and automerge when updating README.md by @cgrindel in #27
  • Updated update_readme workflow to use app-generated token by @cgrindel in #33
  • Update REAMDE.md for 0.1.3 by @cgrindel-app-token-generator in #34
  • Update REAMDE.md for 0.1.3 by @cgrindel-app-token-generator in #36
  • Update REAMDE.md for v0.1.3 by @cgrindel-app-token-generator in #37
  • Tested and fixed create_release.yml workflow. by @cgrindel in #39

Full Changelog: v0.1.2...v0.1.3

Workspace Snippet

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "cgrindel_bazel_starlib",
    sha256 = "adf1fb53d504810e5685cf03172d48c2b60e8566ce7bad4642d6c45daff9533d",
    strip_prefix = "bazel-starlib-0.1.3",
    urls = [
        "http://github.com/cgrindel/bazel-starlib/archive/v0.1.3.tar.gz",
    ],
)

load("@cgrindel_bazel_starlib//:deps.bzl", "bazel_starlib_dependencies")

bazel_starlib_dependencies()

load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")

bazel_skylib_workspace()

load("@cgrindel_bazel_doc//bazeldoc:deps.bzl", "bazeldoc_dependencies")

bazeldoc_dependencies()

load("@io_bazel_stardoc//:setup.bzl", "stardoc_repositories")

stardoc_repositories()