Skip to content

Commit

Permalink
1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cupcakearmy committed Nov 11, 2021
1 parent 325518b commit a462bed
Show file tree
Hide file tree
Showing 13 changed files with 1,107 additions and 6,979 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/test.yml

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ 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).

## [1.2.0] - 2021-11-11

### Changed

- Switch to pnpm

### Security

- Dependencies updated

## [1.1.1] - 2021-05-17

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cryptgeon"
version = "1.0.0"
version = "1.2.0"
authors = ["cupcakearmy <hi@nicco.io>"]
edition = "2018"

Expand All @@ -18,4 +18,4 @@ serde_json = "1"
lazy_static = "1"
ring = "0.16"
bs62 = "0.1"
memcache = "0.15"
memcache = "0.15"
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ FROM node:16-alpine as CLIENT
WORKDIR /tmp
COPY ./client ./

RUN npm ci
RUN npm run build
RUN npm install -g pnpm
RUN pnpm install
RUN pnpm run build

FROM rust:1.51-alpine as RUST

Expand All @@ -25,4 +26,4 @@ ENV MEMCACHE=memcached:11211

EXPOSE 5000

ENTRYPOINT [ "/app/cryptgeon" ]
ENTRYPOINT [ "/app/cryptgeon" ]
Loading

0 comments on commit a462bed

Please sign in to comment.