Skip to content

Commit 3a102a7

Browse files
committed
feat: allow Tcl 9
Update copyright. Bump the version to 0.9.0.
1 parent 7d1d449 commit 3a102a7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build.tcl

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/usr/bin/env tclsh
22
# Packer, a tool for creating Starpacks out of Git repositories.
3-
# Copyright (c) 2015, 2017, 2018 dbohdan.
3+
# Copyright (c) 2015, 2017, 2018, 2024 D. Bohdan
44
# License: MIT
55

66
# Usage: build.tcl [revision [key value ..]]
77

8-
package require Tcl 8.6
8+
package require Tcl 8.6 9
99
package require platform
1010

1111
set packerPath [file dirname [file dirname [file normalize $argv0/___]]]

packer.tcl

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/usr/bin/env tclsh
22
# Packer, a tool for creating Starpacks out of Git repositories.
3-
# Copyright (c) 2015, 2017, 2018, 2019 dbohdan.
3+
# Copyright (c) 2015, 2017, 2018, 2019, 2024 D. Bohdan
44
# License: MIT
55

6-
package require Tcl 8.6
6+
package require Tcl 8.6 9
77

88
namespace eval ::packer {
9-
variable version 0.8.1
9+
variable version 0.9.0
1010
}
1111

1212
proc ::packer::init {} {

0 commit comments

Comments
 (0)