Commit 5665cf7440ce2f16eec95a185eed0b5a1d2d5206
- Date: Thu Mar 22 15:55:14 +0000 2007
- Committer: fbos (fbos@d6c2ea82-c31b-0410-8381-e9c44f9824c5)
- Author: fbos (fbos@d6c2ea82-c31b-0410-8381-e9c44f9824c5)
- Commit SHA1: 5665cf7440ce2f16eec95a185eed0b5a1d2d5206
- Tree SHA1: 988e025ef328406c84750844b193153207b2c6d9
Prepare for 1.3.3 release.
git-svn-id: svn+ssh://rubyforge.org/var/svn/piston/trunk@111 d6c2ea82-c31b-0410-8381-e9c44f9824c5
Commit diff
| |   |
| 1 | 1 | *SVN* |
| 2 | 2 | |
| 3 | 2007-03-22 1.3.3 |
| 4 | * Repaired problems with import subcommand. Wrote specifications to prevent |
| 5 | the same failure mode again. |
| 6 | |
| 3 | 7 | 2007-03-09 1.3.2 |
| 4 | 8 | * piston switch had a bad constant access which caused failures. |
| 5 | 9 | |
| toggle raw diff |
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,9 @@
*SVN*
+2007-03-22 1.3.3
+* Repaired problems with import subcommand. Wrote specifications to prevent
+ the same failure mode again.
+
2007-03-09 1.3.2
* piston switch had a bad constant access which caused failures.
|
| |   |
| 4 | 4 | module VERSION #:nodoc: |
| 5 | 5 | MAJOR = 1 |
| 6 | 6 | MINOR = 3 |
| 7 | | TINY = 2 |
| 7 | TINY = 3 |
| 8 | 8 | |
| 9 | 9 | STRING = [MAJOR, MINOR, TINY].join('.') |
| 10 | 10 | end |
| toggle raw diff |
--- a/lib/piston/version.rb
+++ b/lib/piston/version.rb
@@ -4,7 +4,7 @@ module Piston
module VERSION #:nodoc:
MAJOR = 1
MINOR = 3
- TINY = 2
+ TINY = 3
STRING = [MAJOR, MINOR, TINY].join('.')
end |