Skip to content

Commit eb297fa

Browse files
committed
Update the readme files with the latest released version 2.2.
1 parent dd30c59 commit eb297fa

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
combinatoricslib 2.3
66
====================
77

8-
Very simple java library to generate permutations, combinations and other combinatorial sequences for java 7.
9-
New version of the library for java 8 can be found [here](https://github.com/dpaukov/combinatoricslib3)
8+
Very simple java library to generate permutations, combinations and other combinatorial sequences for Java 7+.
9+
New version of the library for (Java 8) can be found [here](https://github.com/dpaukov/combinatoricslib3).
1010

1111
1. [Simple combinations](#1-simple-combinations)
1212
2. [Combinations with repetitions (multicombination)](#2-combinations-with-repetitions)
@@ -19,6 +19,7 @@ New version of the library for java 8 can be found [here](https://github.com/dpa
1919
9. [Cartesian Product](#9-cartesian-product)
2020
10. [The latest release](#the-latest-release)
2121

22+
2223
You can use the following table to select a generator:
2324

2425
| Description | Is Order Important? | Is Repetition Allowed? | CombinatoricsFactory Method |
@@ -359,14 +360,14 @@ The cartesian product will be:
359360

360361
### The latest release
361362

362-
The latest release of the library is available through The Maven Central Repository [here](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.googlecode.combinatoricslib%22%20AND%20a%3A%22combinatoricslib%22)
363+
The latest release of the library is available through The Maven Central Repository [here](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.googlecode.combinatoricslib%22%20AND%20a%3A%22combinatoricslib%22).
363364
Include the following section into your `pom.xml` file.
364365

365366
```xml
366367
<dependency>
367368
<groupId>com.googlecode.combinatoricslib</groupId>
368369
<artifactId>combinatoricslib</artifactId>
369-
<version>2.1</version>
370+
<version>2.2</version>
370371
<scope>compile</scope>
371372
</dependency>
372373
```

src/main/resources/META-INF/README.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
CombinatoricsLib - release notes
33
by Dmytro Paukov
44

5+
CombinatoricsLib 2.3 (2018)
56

7+
8+
-----------------------------------------------------------------
69
CombinatoricsLib 2.2 (May 2018)
710
- Added a method for calculating factorials using BigDecimal (Issue #10).
811
- Added cartesian product generator.

0 commit comments

Comments
 (0)