Skip to content

Commit

Permalink
feat(*): add support for SPX
Browse files Browse the repository at this point in the history
  • Loading branch information
janosmiko committed Mar 27, 2024
1 parent 7c72068 commit 73ea84c
Show file tree
Hide file tree
Showing 13 changed files with 24 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev-golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
go-version: 1.22
- name: Download deps
run: go mod download -x
- name: golangci-lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
go-version: 1.22
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
go-version: 1.22
- name: Download deps
run: go mod download -x
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
go-version: 1.22
- name: Download deps
run: go mod download -x
- name: golangci-lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
go-version: 1.22
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
go-version: 1.22
- name: Download deps
run: go mod download -x
- name: Test
Expand Down
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.6.0] - 2024-03-26
## [0.6.1] - 2024-03-27

We're super excited to announce `Reward` 0.6.1!

### Added

- Add support of SPX

We're super excited to announce `Reward` 0.6.0!
### Changed

- Update to go version 1.22

## [0.6.0] - 2024-03-26

### Changed

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Dependencies:

- golang 1.21
- golang 1.22
- goreleaser

```
Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.6.0
v0.6.1
2 changes: 1 addition & 1 deletion cmd/reward/main.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build go1.21
//go:build go1.22

package main

Expand Down
2 changes: 1 addition & 1 deletion docker/test.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM golang:1.21-alpine AS builder
FROM golang:1.22-alpine AS builder
LABEL stage=gobuilder

WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/rewardenv/reward

go 1.21
go 1.22

require (
github.com/Masterminds/semver v1.5.0
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sonar.organization=rewardenv

# This is the name and version displayed in the SonarCloud UI.
sonar.projectName=reward
sonar.projectVersion=0.6.0
sonar.projectVersion=0.6.1

# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
#sonar.sources=.
Expand Down

0 comments on commit 73ea84c

Please sign in to comment.