ruby-mpfr 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/History.txt +4 -0
  2. data/README.rdoc +6 -3
  3. data/lib/mpfr/version.rb +1 -1
  4. metadata +2 -2
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ === 0.0.9
2
+ * 1 minor enhancements:
3
+ * Correct README.rdoc
4
+
1
5
  === 0.0.8
2
6
  * 2 major enhancements:
3
7
  * Support MPFR v3.
data/README.rdoc CHANGED
@@ -21,11 +21,14 @@ MPFR::ColumnVector, and MPFR::RowVector.
21
21
  == Requirements:
22
22
 
23
23
  * Ruby[http://www.ruby-lang.org/] 1.9.1 or later
24
- * MPFR[http://www.mpfr.org/] 2.4.1 or later
24
+ * MPFR[http://www.mpfr.org/] 3.0.0 or later
25
25
 
26
- For Ubuntu 9.10, we can install MPFR with the following command.
26
+ For Ubuntu 10.10, we can install MPFR with the following command.
27
27
  $ sudo apt-get install libmpfr-dev
28
28
 
29
+ Note that ruby-mpfr does not work on MPFR 2.
30
+ So, we need to upgrade MPFR to version 3.
31
+
29
32
  == Install:
30
33
  The package of rubygems of ruby-mpfr is provided.
31
34
  You can install ruby-mpfr with the following command
@@ -45,7 +48,7 @@ The following is an another multiple precision library which uses GMP.
45
48
  == License:
46
49
 
47
50
  ruby-mpfr
48
- Copyright (C) 2009 Takayuki YAMAGUCHI
51
+ Copyright (C) 2009 - 2010 Takayuki YAMAGUCHI
49
52
 
50
53
  This program is free software; you can redistribute it and/or modify it under
51
54
  the terms of the GNU Lesser General Public License as published by the Free
data/lib/mpfr/version.rb CHANGED
@@ -1 +1 @@
1
- RUBY_MPFR_VERSION = '0.0.8'
1
+ RUBY_MPFR_VERSION = '0.0.9'
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 8
9
- version: 0.0.8
8
+ - 9
9
+ version: 0.0.9
10
10
  platform: ruby
11
11
  authors:
12
12
  - Takayuki YAMAGUCHI