Skip to content

Commit

Permalink
[Release] Beta-3.2 (#197)
Browse files Browse the repository at this point in the history
* Create rc-v0.3.2 prep

* Do lint as a pre make target, remove prerequisite from docker makes

* Properly capitalise JavaScript
  • Loading branch information
javorszky authored Feb 9, 2022
1 parent f7bdee0 commit 4f0faa5
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
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

0 comments on commit 4f0faa5

Please sign in to comment.