Skip to content

Commit fb3a9c4

Browse files
release v0.11.5: move default registry to shrug-labs/packs
1 parent 8034690 commit fb3a9c4

File tree

7 files changed

+11
-17
lines changed

7 files changed

+11
-17
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on Keep a Changelog, and releases use semantic versioning ta
66

77
## Unreleased
88

9+
## [0.11.5]
10+
11+
### Changed
12+
13+
- Default registry moved from `shrug-labs/aipack` to `shrug-labs/packs`. The registry now lives alongside the packs it indexes, decoupling content changes from tool releases and eliminating a redundant clone during `pack install`.
14+
915
## [0.11.4]
1016

1117
### Added

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.11.4
1+
0.11.5

docs/cli-spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ The fully-resolved profile object. Shape follows the `domain.Profile` struct —
452452
[
453453
{
454454
"name": "default",
455-
"url": "https://github.com/shrug-labs/aipack.git",
455+
"url": "https://github.com/shrug-labs/packs.git",
456456
"ref": "main",
457457
"path": "registry.yaml",
458458
"cached": true

docs/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ installed_packs: # managed by pack install/delete/update
6565

6666
registry_sources: # managed by registry fetch
6767
- name: default
68-
url: https://github.com/shrug-labs/aipack.git
68+
url: https://github.com/shrug-labs/packs.git
6969
ref: main
7070
path: registry.yaml
7171
- name: team-tools

internal/config/registry.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const RegistrySchemaVersion = 1
2121
// sync-config or passed as a flag. Git-based fetch piggybacks on the user's
2222
// existing git credentials (SSH keys, credential helpers, etc.).
2323
const (
24-
DefaultRegistryRepo = "https://github.com/shrug-labs/aipack.git"
24+
DefaultRegistryRepo = "https://github.com/shrug-labs/packs.git"
2525
DefaultRegistryRef = "main"
2626
DefaultRegistryPath = "registry.yaml"
2727
)

internal/config/registry_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ func TestDeriveSourceName(t *testing.T) {
114114
url string
115115
want string
116116
}{
117-
{"https://github.com/shrug-labs/aipack.git", "aipack"},
117+
{"https://github.com/shrug-labs/packs.git", "packs"},
118118
{"https://bitbucket.example.com/scm/TEAM/my-tools.git", "my-tools"},
119119
{"https://example.com/my-team/registry.yaml", "my-team"},
120120
{"https://example.com/registry.yaml", "example"},

registry.yaml

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)