Skip to content

Commit fdeda62

Browse files
committed
up
1 parent 245d74b commit fdeda62

File tree

14 files changed

+24
-28
lines changed

14 files changed

+24
-28
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
go-version: "1.24.4"
1515
- uses: "dtolnay/rust-toolchain@stable"
1616
with:
17-
toolchain: "1.86.0"
17+
toolchain: "1.87.0"
1818
- name: "provision dev tools"
1919
run: "make -j 4"
2020
- run: "mage lint"

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
golang 1.24.4
2-
rust 1.86.0
2+
rust 1.87.0

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
* [Go](https://go.dev/) 1.24.4+
44
* [POSIX](https://pubs.opengroup.org/onlinepubs/9799919799/) compatible [make](https://en.wikipedia.org/wiki/Make_(software))
5-
* [Rust](https://www.rust-lang.org/) 1.86.0+
5+
* [Rust](https://www.rust-lang.org/) 1.87.0+
66
* [Snyk](https://snyk.io/)
77
* [POSIX](https://pubs.opengroup.org/onlinepubs/9799919799/) compatible [tar](https://en.wikipedia.org/wiki/Tar_(computing))
88
* Provision additional dev tools with `make [-j 4]`

example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Hello World!
99

1010
# REQUIREMENTS
1111

12-
* [Go](https://golang.org/) 1.24.1+
12+
* [Go](https://golang.org/) 1.24.4+
1313

1414
## Recommended
1515

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.24.4
44

55
require (
66
github.com/magefile/mage v1.15.0
7-
github.com/mcandre/mage-extras v0.0.23
7+
github.com/mcandre/mage-extras v0.0.24
88
)
99

1010
require (

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D
2626
github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=
2727
github.com/mattn/go-runewidth v0.0.16 h1:E5ScNMtiwvlvB5paMFdw9p4kSQzbXFikJ5SQO6TULQc=
2828
github.com/mattn/go-runewidth v0.0.16/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
29-
github.com/mcandre/mage-extras v0.0.23 h1:ewsSgFQSXGLkj8FGTvazp8zzkJ1zPOplGHAcrq9W3U4=
30-
github.com/mcandre/mage-extras v0.0.23/go.mod h1:M0kkODLRCpaGhl7+UWmE8sHBHF+LLuITHzb1WJw5Jiw=
29+
github.com/mcandre/mage-extras v0.0.24 h1:r0sStsVbiPRlKcdOi/nm3PUzYWKW1ImJhamaETYybno=
30+
github.com/mcandre/mage-extras v0.0.24/go.mod h1:zhbIqQ1YJruJ41ESXxc4Fb8rrLG/zE5MYBQkPPpopd8=
3131
github.com/mgechev/dots v0.0.0-20210922191527-e955255bf517 h1:zpIH83+oKzcpryru8ceC6BxnoG8TBrhgAvRg8obzup0=
3232
github.com/mgechev/dots v0.0.0-20210922191527-e955255bf517/go.mod h1:KQ7+USdGKfpPjXk4Ga+5XxQM4Lm4e3gAogrreFAYpOg=
3333
github.com/mgechev/revive v1.9.0 h1:8LaA62XIKrb8lM6VsBSQ92slt/o92z5+hTw3CmrvSrM=

makefile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
.POSIX:
22
.SILENT:
3-
.PHONY: \
4-
all \
5-
go \
6-
rust
3+
ALLTARGETS!=ls -a *
4+
.PHONY: $(ALLTARGETS)
75

86
all: go rust
97

@@ -16,4 +14,4 @@ go:
1614
go mod tidy
1715

1816
rust:
19-
cargo install --force [email protected].17
17+
cargo install --force [email protected].20

vendor/github.com/mcandre/mage-extras/.rubberstamp

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/mcandre/mage-extras/.tool-versions

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/mcandre/mage-extras/DEVELOPMENT.md

Lines changed: 4 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)