From 541656b6724e2bbb18261971ed8a1780979c1230 Mon Sep 17 00:00:00 2001 From: Yossef Mendelssohn Date: Tue, 29 Jul 2008 22:10:42 -0500 Subject: [PATCH] Setting version (0.3.0), updating History. --- History.txt | 7 +++++++ lib/flac2mp3/version.rb | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/History.txt b/History.txt index 155b954..907aa6a 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,10 @@ +== 0.3.0 2008-07-29 + +* 2 enhancements: + * Now has a configuration file, ~/.flac2mp3, where options can be stored. + Options given on the command-line override any configuration options. + * Greatly refactored internals, though the command-line operation remains the same. + == 0.2.8 2008-07-21 * 1 enhancement: diff --git a/lib/flac2mp3/version.rb b/lib/flac2mp3/version.rb index bad589d..8ebe892 100644 --- a/lib/flac2mp3/version.rb +++ b/lib/flac2mp3/version.rb @@ -1,8 +1,8 @@ class Flac2mp3 #:nodoc: module VERSION #:nodoc: MAJOR = 0 - MINOR = 2 - TINY = 8 + MINOR = 3 + TINY = 0 STRING = [MAJOR, MINOR, TINY].join('.') end