diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-12-04 21:09:27 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-12-04 21:09:27 +0000 |
commit | 7ea6d6ae8345790448a540ac31bc32d1c836b2d2 (patch) | |
tree | da10c056eb1c632f8b8c79c1d574657efffc0d5d | |
parent | 6a2eeb821c7823ea2fa15be852174f40794d87ac (diff) |
Updating version numbers in advance of 1.2.10 release
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1940 4979c152-3d1c-0410-bac9-87ea11338e46
-rwxr-xr-x | LedgerSMB/Form.pm | 5 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | dists/rpm/ledgersmb.spec | 2 | ||||
-rw-r--r-- | dists/source/build.sh | 2 |
4 files changed, 5 insertions, 6 deletions
diff --git a/LedgerSMB/Form.pm b/LedgerSMB/Form.pm index 34ca7187..e2db2d0c 100755 --- a/LedgerSMB/Form.pm +++ b/LedgerSMB/Form.pm @@ -83,7 +83,7 @@ sub new { #menubar will be deprecated, replaced with below $self->{lynx} = 1 if $self->{path} =~ /lynx/i; - $self->{version} = "1.2.9"; + $self->{version} = "1.2.10"; $self->{dbversion} = "1.2.0"; bless $self, $type; @@ -432,7 +432,6 @@ sub format_amount { } if ( $places =~ /\d+/ ) { - #$places = 4 if $places == 2; $amount = $self->round_amount( $amount, $places ); } @@ -569,7 +568,7 @@ sub parse_amount { $amount = new Math::BigFloat($amount); - return ( $amount * 1 ); + return ($amount); } sub round_amount { @@ -1 +1 @@ -1.2.9 +1.2.10 diff --git a/dists/rpm/ledgersmb.spec b/dists/rpm/ledgersmb.spec index 462c852f..ebc3e254 100644 --- a/dists/rpm/ledgersmb.spec +++ b/dists/rpm/ledgersmb.spec @@ -1,7 +1,7 @@ # RPM spec written for and tested on Fedora Core 6 Summary: LedgerSMB - Open Source accounting software Name: ledgersmb -Version: 1.2.9 +Version: 1.2.10 Release: 1 License: GPL URL: http://www.ledgersmb.org/ diff --git a/dists/source/build.sh b/dists/source/build.sh index e2f26a13..33250b4c 100644 --- a/dists/source/build.sh +++ b/dists/source/build.sh @@ -9,7 +9,7 @@ else pgdoc="true"; fi -version="1.2.9"; +version="1.2.10"; #rpmversion="1.2.6"; build_d="../release"; |