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

[Release] Beta-3.2 #197

Merged
merged 3 commits into from
Feb 9, 2022
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions .subo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ dotVersionFiles:
- builder/.image-ver

preMakeTargets:
- lint
- subo/docker

postMakeTargets:
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ include ./subo/release/release.mk

GO_INSTALL=go install -ldflags $(RELEASE_FLAGS)

subo: lint
subo:
$(GO_INSTALL)

subo/dev: lint
$(GO_INSTALL) -tags=development

subo/docker: lint
subo/docker:
docker build . -t suborbital/subo:dev

subo/docker/publish: lint
subo/docker/publish:
docker buildx build . --platform linux/amd64,linux/arm64 -t suborbital/subo:dev --push

mod/replace/atmo:
Expand Down
2 changes: 1 addition & 1 deletion builder/.image-ver
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.3.1
v0.3.2
10 changes: 10 additions & 0 deletions changelogs/v0.3.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Subo Beta-3.2 brings quality of life improvements, javascript support, and create handler command

* (fix): purge bad data cache from version check (pr #170)
* (tweak): reduce file and folder permissions across subo (pr #172)
* feat(builder): support for javascript (pr #177)
* feat(builder): introduce templating for prereq commands (pr #187)
* feat(cli): create handler command
* feat(cli): initial version of subo push using Bindle (pr #178)
* feat(ci/cd): adds a workflow to dispatch data on release to homebrew formula repo (pr #183)
* feat(ci/cd): adds golangci-lint and basic linting rules, fixes issues (pr #189)
2 changes: 1 addition & 1 deletion subo/release/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package release

// SuboDotVersion represents the dot version for subo
// it is also the image tag used for builders.
var SuboDotVersion = "0.3.1"
var SuboDotVersion = "0.3.2"

// FFIVersion is the FFI version used by this version of subo.
var FFIVersion = "0.13.1"
Expand Down