Skip to content

Commit

Permalink
Merge pull request #26 from sebadob/prepare-release-v0.4.3
Browse files Browse the repository at this point in the history
Prepare release v0.4.3
  • Loading branch information
sebadob committed Nov 6, 2023
2 parents 86985a1 + c960f5c commit 9da62c5
Show file tree
Hide file tree
Showing 27 changed files with 370 additions and 902 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## v0.4.3

- license change to Apache-2.0
- fix for the Dockerfile, where the multi-platform image screwed up the old behavior with Entrypoint + Cmd
- fix for wrong naming of EdDSA algorithm
- updated dependencies

## v0.4.2

- fully updated frontend and backend dependencies
Expand Down
96 changes: 49 additions & 47 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "nioca"
version = "0.4.2"
version = "0.4.3"
edition = "2021"
authors = ["Sebastian Dobe <sebastiandobe@mailbox.org>"]
license = "AGPLv3"
license = "Apache-2.0"

[profile.release]
codegen-units = 1
Expand Down
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,6 @@ COPY --chown=10001:10001 out/nioca-"$TARGETARCH" ./nioca

EXPOSE 8080 8443

CMD ["/nioca"]
ENTRYPOINT ["/nioca"]

CMD ["server"]
Loading

0 comments on commit 9da62c5

Please sign in to comment.