This repository has been archived by the owner on Apr 3, 2023. It is now read-only.
Release v0.7.0
cgrindel-app-token-generator
released this
12 Jan 15:42
·
67 commits
to main
since this release
What's Changed
- Updated README.md with release 0.6.0 information. by @cgrindel in #81
- Updated to rules_swift 0.24.0. by @cgrindel in #83
- Added shell scripts to execute swiftlint and swiftformat by @cgrindel in #84
- Migrated to bazel-doc macros and upgraded bazel-skylib to 1.1.1. by @cgrindel in #85
- Add rules_bzlformat by @cgrindel in #89
- Implemented Integration test targets by @cgrindel in #91
- Removed debug stuff and enabled all integration tests for macos test. by @cgrindel in #94
- Added TOC to README.md and added examples list to examples README. by @cgrindel in #95
- Added support for executing integration tests with multiple versions of Bazel by @cgrindel in #96
- Migrate to rules_bazel_integration_test by @cgrindel in #97
- Update rules_bazel_integration_test to release 0.3.0. by @cgrindel in #99
- Updated rules_bzlformat and added check for missing
bzlformat_pkg
declarations. by @cgrindel in #101 - Migrate from
rules_bzlformat
,rules_updatesrc
, andbazel_shlib
tobazel-starlib
by @cgrindel in #104 - Updated
spm_pkg
to acceptexact_version
for a package. by @cgrindel in #105 - Update repository to best practices by @cgrindel in #106
- Refactored CI with shared actions and added first pass at release workflow. by @cgrindel in #107
Full Changelog: v0.6.0...v0.7.0
Workspace Snippet
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "cgrindel_rules_spm",
sha256 = "cbe5d5dccdc8d5aa300e1538c4214f44a1266895d9817e8279a9335bcbee2f1e",
strip_prefix = "rules_spm-0.7.0",
urls = [
"http://github.com/cgrindel/rules_spm/archive/v0.7.0.tar.gz",
],
)
load(
"@cgrindel_rules_spm//spm:deps.bzl",
"spm_rules_dependencies",
)
spm_rules_dependencies()
load(
"@build_bazel_rules_swift//swift:repositories.bzl",
"swift_rules_dependencies",
)
swift_rules_dependencies()
load(
"@build_bazel_rules_swift//swift:extras.bzl",
"swift_rules_extra_dependencies",
)
swift_rules_extra_dependencies()