Skip to content
This repository was archived by the owner on Sep 28, 2021. It is now read-only.

Commit b51ca94

Browse files
committedDec 7, 2017
Bump to 0.8.2.
1 parent bd259e1 commit b51ca94

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.8.2
2+
3+
* Fix packaging.
4+
15
# 0.8.1
26

37
* Bump partisan dependencies.

‎Dockerfiles/packager

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN cd /tmp && \
1717

1818
CMD cd /tmp && \
1919
git clone https://github.com/lasp-lang/lasp.git && \
20-
cd lasp && make && VERSION="0.8.1" make package && \
20+
cd lasp && make && VERSION="0.8.2" make package && \
2121
locale-gen en_US en_US.UTF-8 && \
2222
dpkg-reconfigure locales && \
2323
LC_ALL="en_US.UTF-8" package_cloud push cmeiklejohn/lasp/ubuntu/trusty `find /tmp/lasp -name *.deb | tail -1`

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ VERSION ?= $(shell git describe --tags)
33
BASE_DIR = $(shell pwd)
44
ERLANG_BIN = $(shell dirname $(shell which erl))
55
REBAR = $(shell pwd)/rebar3
6-
VERSION = "0.8.1"
6+
VERSION = "0.8.2"
77
MAKE = make
88

99
.PHONY: rel deps test plots dcos logs fpm

‎rebar.config

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
{eredis, {git, "git://github.com/wooga/eredis.git", {tag, "master"}}}]},
4242
{src_dirs, ["src", "simulations"]},
4343
{extra_src_dirs, ["simulations"]},
44-
{relx, [{release, {lasp, "0.8.1"}, [erlcloud, jsx, webmachine, eredis, sprinter, jsx, lasp]},
44+
{relx, [{release, {lasp, "0.8.2"}, [erlcloud, jsx, webmachine, eredis, sprinter, jsx, lasp]},
4545
{extended_start_script, true},
4646

4747
{dev_mode, true},
@@ -133,7 +133,7 @@
133133
]
134134
}.
135135

136-
{relx, [{release, {lasp, "0.8.1"}, [lasp]},
136+
{relx, [{release, {lasp, "0.8.2"}, [lasp]},
137137
{extended_start_script, true},
138138

139139
{dev_mode, true},

‎src/lasp.app.src

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application,lasp,
22
[{description,"Declarative, distributed, eventually consistent compuations."},
3-
{vsn,"0.8.1"},
3+
{vsn,"0.8.2"},
44
{maintainers,["Christopher S. Meiklejohn"]},
55
{links,[{"Github","https://github.com/lasp-lang/lasp"}]},
66
{licenses,["Apache 2"]},

0 commit comments

Comments
 (0)