Skip to content

Commit

Permalink
🔖 Release v1.1.0 (#293)
Browse files Browse the repository at this point in the history
* ✏️ Update readme

* 🔖 Release v1.1.0
  • Loading branch information
tosone authored Feb 4, 2024
1 parent 1757a7b commit 22eee21
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 2 deletions.
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,51 @@

<a name="v1.1.0"></a>
## [v1.1.0](https://github.com/go-sigma/sigma/compare/v1.0.0...v1.1.0) (2024-02-04)

### Features

* Support build with mirror ([#285](https://github.com/go-sigma/sigma/issues/285))
* Create namespace send webhook ([#283](https://github.com/go-sigma/sigma/issues/283))
* Support apptainer sif ([#278](https://github.com/go-sigma/sigma/issues/278))
* Implement blob redirect ([#275](https://github.com/go-sigma/sigma/issues/275))
* Support disable image builder ([#273](https://github.com/go-sigma/sigma/issues/273))
* Use zig as cross compiler ([#269](https://github.com/go-sigma/sigma/issues/269))
* Support disable image build ([#267](https://github.com/go-sigma/sigma/issues/267))

### Bug Fixes

* Fix artifact type ([#276](https://github.com/go-sigma/sigma/issues/276))
* Fix builder image not exist ([#272](https://github.com/go-sigma/sigma/issues/272))
* Enable cgo for sqlite3 ([#268](https://github.com/go-sigma/sigma/issues/268))

### Docs

* Add apptainer docs ([#282](https://github.com/go-sigma/sigma/issues/282))

### Upgrade

* Upgrade dependencies ([#290](https://github.com/go-sigma/sigma/issues/290))
* Upgrade distribution ([#277](https://github.com/go-sigma/sigma/issues/277))
* Update dependencies ([#271](https://github.com/go-sigma/sigma/issues/271))

### CI

* Update ci config ([#288](https://github.com/go-sigma/sigma/issues/288))
* Update tag release config ([#266](https://github.com/go-sigma/sigma/issues/266))
* Update tag release config ([#265](https://github.com/go-sigma/sigma/issues/265))

### Unit Tests

* Add test for auth ([#289](https://github.com/go-sigma/sigma/issues/289))
* Add namespace update ut ([#287](https://github.com/go-sigma/sigma/issues/287))
* Add list namespace ut ([#286](https://github.com/go-sigma/sigma/issues/286))
* Add delete namespace ut back ([#284](https://github.com/go-sigma/sigma/issues/284))
* Add unit test for signing init ([#281](https://github.com/go-sigma/sigma/issues/281))
* Add unit test for workq ([#280](https://github.com/go-sigma/sigma/issues/280))
* Add unit test for audit ([#279](https://github.com/go-sigma/sigma/issues/279))
* Add unit test for inmemory cache ([#270](https://github.com/go-sigma/sigma/issues/270))


<a name="v1.0.0"></a>
## v1.0.0 (2023-12-29)

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ GOCMD = go
GOTEST = $(GOCMD) test
GOVET = $(GOCMD) vet
BINARY_NAME = sigma
VERSION ?= 0.0.0
VERSION ?= $(shell git describe --tags --always)
SERVICE_PORT ?= 3000
DOCKER_REGISTRY ?= ghcr.io/go-sigma

Expand Down Expand Up @@ -91,7 +91,7 @@ sql-format: ## Format all sql files
@find ${PWD}/pkg/dal/migrations -type f -iname "*.sql" -print | xargs pg_format -s 2 --inplace

changelog: ## Generate changelog
@docker run -v "${PWD}":/workdir quay.io/git-chglog/git-chglog:latest -o CHANGELOG.md
@docker run -v "${PWD}":/workdir quay.io/git-chglog/git-chglog:latest --next-tag $(VERSION) -o CHANGELOG.md

gormgen: ## Generate gorm model from database
@$(GOCMD) run ./pkg/dal/cmd/gen.go
Expand Down

0 comments on commit 22eee21

Please sign in to comment.