Skip to content

Commit 882989c

Browse files
author
Oleiade
committed
Bump version 0.3.4
1 parent 8225121 commit 882989c

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

.goxc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"Arch": "386 amd64 arm",
66
"Os": "linux darwin",
77
"BuildConstraints": "linux darwin",
8-
"PackageVersion": "0.3.3",
8+
"PackageVersion": "0.3.4",
99
"ConfigVersion": "0.9",
1010
"TaskSettings": {
1111
"deb": {

History.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2+
0.3.4 / 2014-10-06
3+
==================
4+
5+
* Fix #119: add missing errors return in trousseau's openpgp package
6+
* Fix #121: Ensure files are created in 0600 mode
7+
* Enhance integration testing
8+
* Add dummy gpg keys for testing purposes
9+
* Fix create store for multiple recipients
10+
111
0.3.3 / 2014-09-22
212
==================
313

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ all: deps trousseau
2828

2929
deps:
3030
@(echo "-> Processing dependencies")
31-
@(go get github.com/kr/godep)
32-
@(godep restore)
31+
# @(go get github.com/kr/godep)
32+
# @(godep restore)
3333

3434
trousseau: deps
3535
@(echo "-> Compiling trousseau binary")

constants.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package trousseau
22

3-
const TROUSSEAU_VERSION = "0.3.3"
3+
const TROUSSEAU_VERSION = "0.3.4"
44

55
const (
66
DEFAULT_STORE_FILENAME = ".trousseau"

trousseau.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
class Trousseau < Formula
44
homepage 'https://github.com/oleiade/trousseau'
5-
url 'https://github.com/oleiade/trousseau/releases/download/0.3.3/trousseau_0.3.3_darwin_amd64.zip'
5+
url 'https://github.com/oleiade/trousseau/releases/download/0.3.4/trousseau_0.3.4_darwin_amd64.zip'
66
sha1 ''
77

88
def install

0 commit comments

Comments
 (0)