Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.6.9 version bump / release prep #385

Merged
merged 1 commit into from
Jun 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: go install ./cmd/hof
- name: Setup
run: |-
hof fmt start prettier@v0.6.8
hof fmt start prettier@v0.6.9
cd docs
hof mod link
make tools
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hof.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Start Formatters
run: |-
docker images
hof fmt start @v0.6.8
hof fmt start @v0.6.9
hof fmt info
docker ps -a
services: {}
2 changes: 1 addition & 1 deletion .github/workflows/release-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
run: go install ./cmd/hof
- name: Setup
run: |-
hof fmt start prettier@v0.6.8
hof fmt start prettier@v0.6.9
cd docs
hof mod link
make tools
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ github: workflow devcontainer
workflows = $(addprefix workflow_, $(GHA_FILES))
workflow: $(workflows)
$(workflows): workflow_%:
@cue export --out yaml $(subst workflow_,,$@) -f -o $(subst ci/gha,.github/workflows,$(subst workflow_,,$(subst .cue,,$@))).yml
@hof export --out yaml $(subst workflow_,,$@) -o $(subst ci/gha,.github/workflows,$(subst workflow_,,$(subst .cue,,$@))).yml
devcontainer: ci/devc/devcontainer.cue
@cue export ci/devc/devcontainer.cue -f -o .devcontainer/devcontainer.json
@hof export ci/devc/devcontainer.cue -o .devcontainer/devcontainer.json

.PHONY: hack
hack:
Expand Down
2 changes: 1 addition & 1 deletion ci/gha/common/steps.cue
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ Steps: {
setup: {
name: "Setup"
run: """
hof fmt start prettier@v0.6.8
hof fmt start prettier@v0.6.9
cd docs
hof mod link
make tools
Expand Down
2 changes: 1 addition & 1 deletion ci/gha/hof.cue
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ ghacue.#Workflow & {
name: "Start Formatters"
run: """
docker images
hof fmt start @v0.6.8
hof fmt start @v0.6.9
hof fmt info
docker ps -a
"""
Expand Down
2 changes: 1 addition & 1 deletion cmd/hof/verinfo/verinfo.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var (
// the value gets injected into templates in various places
// the default here is set to something useful for dev
// the release version is the same as the cli running it
HofVersion = "v0.6.8"
HofVersion = "v0.6.9"
)


Expand Down
2 changes: 1 addition & 1 deletion docs/config.cue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ params: {
github_project_repo: "https://github.com/hofstadter-io/hof"
github_repo: "https://github.com/hofstadter-io/hof"
time_format_default: "January 2, 2006"
hofver: "v0.6.9-rc.2"
hofver: "v0.6.9"
cuever: "v0.9.0"
cuedocBase: "https://pkg.go.dev/cuelang.org/go@\(cuever)"
slackLink: "https://join.slack.com/t/hofstadter-io/shared_invite/zt-e5f90lmq-u695eJur0zE~AG~njNlT1A"
Expand Down
2 changes: 1 addition & 1 deletion docs/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ params:
github_project_repo: https://github.com/hofstadter-io/hof
github_repo: https://github.com/hofstadter-io/hof
time_format_default: January 2, 2006
hofver: v0.6.9-rc.2
hofver: v0.6.9
cuever: v0.9.0
cuedocBase: https://pkg.go.dev/cuelang.org/go@v0.9.0
slackLink: https://join.slack.com/t/hofstadter-io/shared_invite/zt-e5f90lmq-u695eJur0zE~AG~njNlT1A
Expand Down
Loading