Skip to content

Commit c0fc65d

Browse files
committed
prepare for new release
1 parent 7b21df4 commit c0fc65d

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

HISTORY.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
## v0.4.0 - unreleased
1+
## v0.3.2 - unreleased
2+
3+
v0.3.1 - October 17, 2014
4+
-------------------------
25

36
* Fix copy command for assets. (#150) [Joshua Dover]
47
* Add comment for system-wide RVM install. (#112) [Sam Qiu]
@@ -20,6 +23,8 @@
2023
* Fix git:clone on win7 x64 had error (#216)
2124
* Add deploy:cleanup after deploy
2225
* Prevent foreman export from expanding the current/ symlink (#241)
26+
* Support pretty_system on ruby 1.8.7 (#237)
27+
* Ruby 1.8.7 doesn't support empty symbols (#240)
2328

2429

2530
[Joshua Dover]: https://github.com/gerfuls

LICENSE

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

33
The MIT License
44

5-
Copyright (c) 2012 Nadarei, Inc.
5+
Copyright (c) 2014 Nadarei, Inc.
66

77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

Readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1002,8 +1002,8 @@ Michael:
10021002

10031003
[rsc]: http://ricostacruz.com
10041004
[mg]: http://devblog.michaelgalero.com/
1005-
[c]: http://github.com/nadarei/mina/contributors
1005+
[c]: https://github.com/mina-deploy/mina/graphs/contributors
10061006
[nd]: http://nadarei.co
1007-
[issues]: https://github.com/nadarei/mina/issues
1007+
[issues]: https://github.com/mina-deploy/mina/issues
10081008
[trello]: https://trello.com/board/mina/4fc8b3023d9c9a4d72e573e6
10091009

lib/mina/exec_helpers.rb

+2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ def stream_stdin!(&blk)
9898

9999
def stream_stdout(o, &blk)
100100
while str = o.getc
101+
# Ruby 1.8.7 fix
101102
str = str.chr if str.is_a? Fixnum
103+
102104
yield str
103105
end
104106
end

lib/mina/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Mina
22
def self.version
3-
"0.3.0"
3+
"0.3.1"
44
end
55
end

support/Readme-footer.md

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

5-
© 2012-2013, Nadarei. Released under the [MIT
5+
© 2012-2014, Nadarei. Released under the [MIT
66
License](http://www.opensource.org/licenses/mit-license.php).
77

88
Mina is authored and maintained by [Rico Sta. Cruz][rsc] and [Michael

0 commit comments

Comments
 (0)