Skip to content

Commit

Permalink
Release/0.16.0 (#63)
Browse files Browse the repository at this point in the history
* golang 1.21

* use latest angular 17 packages
  • Loading branch information
emschu authored Jul 4, 2024
1 parent 68f20d1 commit 2e0d490
Show file tree
Hide file tree
Showing 15 changed files with 2,330 additions and 1,722 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
node-version: [ '20.x' ]
go-version: [ '1.20' ]
go-version: [ '1.21', '1.22']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.20'
go-version: '1.21'
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.20'
go-version: '1.21'
- name: Linting
run: |
go install github.com/mgechev/revive@latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
node-version: [ '20.x' ]
python-version: [ '3.11' ]
go-version: [ '1.20' ]
go-version: [ '1.21', '1.22' ]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog oerc

## 0.16.0 - 2024/07/04
- Golang 1.21
- Dependency update

## 0.15.0 - 2024/02-04
- Fix ORF fetching
- update go and npm dependencies
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# If not, see <https://www.gnu.org/licenses/>.

# Build
FROM golang:1.20-alpine as build
FROM golang:1.21-alpine as build
RUN mkdir /app
WORKDIR /app
COPY go.mod ./
Expand All @@ -27,7 +27,7 @@ COPY . ./project
RUN cd ./project && go build -o /app/oerc


FROM golang:1.20-alpine
FROM golang:1.21-alpine
MAINTAINER emschu <emschu@mailbox.org>
RUN mkdir /app && apk add --no-cache tzdata;
WORKDIR /app
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
# If not, see <https://www.gnu.org/licenses/>.
SHELL := /bin/bash

APP_VERSION_DOT = "0.15.0"
APP_VERSION_STR = "0-15-0"
APP_VERSION_DOT = "0.16.0"
APP_VERSION_STR = "0-16-0"

GO := GO111MODULE=on go
GO_PATH = $(shell $(GO) env GOPATH)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ USAGE:
oerc [global options] command [command options] [arguments...]
VERSION:
0.15.0, License: AGPLv3, https://github.com/emschu/oerc
0.16.0, License: AGPLv3, https://github.com/emschu/oerc
DESCRIPTION:
Fetch, view and search TV program data of public-law stations in Germany, Switzerland and Austria
Expand Down Expand Up @@ -301,7 +301,7 @@ Be sure to run `make build` and `make spec` (if you updated something there) bef
#### Development postgresql container

```console
# docker run --name oer-postgres -p 5432:5432 -e POSTGRES_PASSWORD=root -e POSTGRES_DB=oer_server_dev -d postgres:13.5-alpine
# docker run --name oer-postgres -p 5432:5432 -e POSTGRES_PASSWORD=root -e POSTGRES_DB=oer_server_dev -d postgres:14-alpine
```

### Contributing
Expand Down
3 changes: 2 additions & 1 deletion client/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@
"cli": {
"schematicCollections": [
"@angular-eslint/schematics"
]
],
"analytics": false
},
"schematics": {
"@angular-eslint/schematics:application": {
Expand Down
Loading

0 comments on commit 2e0d490

Please sign in to comment.