Skip to content

Commit

Permalink
Updating versions for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoertink committed Sep 5, 2020
1 parent 4384e07 commit aed6cc7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM crystallang/crystal:0.35.0
FROM crystallang/crystal:0.35.1

RUN apt-get update
RUN apt-get install -y libgconf-2-4 \
Expand All @@ -14,7 +14,7 @@ RUN apt-get install -y libgconf-2-4 \
postgresql \
postgresql-contrib
# Lucky cli
RUN git clone https://github.com/luckyframework/lucky_cli --branch v0.21.0 --depth 1 /usr/local/lucky_cli
RUN git clone https://github.com/luckyframework/lucky_cli --branch v0.24.0 --depth 1 /usr/local/lucky_cli
WORKDIR /usr/local/lucky_cli
RUN shards install && crystal build src/lucky.cr -o /usr/local/bin/lucky
# Cleanup leftovers
Expand Down
4 changes: 2 additions & 2 deletions config.cr
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ end

AppDatabase.configure do |settings|
if ENV["DATABASE_URL"]?
settings.url = ENV["DATABASE_URL"]
settings.credentials = Avram::Credentials.parse(ENV["DATABASE_URL"])
else
settings.url = Avram::PostgresURL.build(
settings.credentials = Avram::Credentials.new(
database: database,
hostname: "db",
username: "lucky",
Expand Down
8 changes: 4 additions & 4 deletions shard.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
name: authentic
version: 0.6.1
version: 0.7.0

authors:
- Paul Smith <[email protected]>

crystal: 0.35.0
crystal: 0.35.1

license: MIT

dependencies:
lucky:
github: luckyframework/lucky
version: ~> 0.23.0
version: ~> 0.24.0
habitat:
github: luckyframework/habitat
version: ~> 0.4.4

development_dependencies:
avram:
github: luckyframework/avram
version: ~> 0.16.0
version: ~> 0.17.0
ameba:
github: crystal-ameba/ameba
version: ~> 0.13.2
2 changes: 1 addition & 1 deletion src/authentic/version.cr
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Authentic
VERSION = "0.6.1"
VERSION = "0.7.0"
end

0 comments on commit aed6cc7

Please sign in to comment.