Skip to content

Commit

Permalink
prepare new major release 1
Browse files Browse the repository at this point in the history
  • Loading branch information
astrapi69 committed Jan 20, 2019
1 parent 7fa0ca8 commit 93a2251
Show file tree
Hide file tree
Showing 3 changed files with 128 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Change log
----------------------

Version -SNAPSHOT
Version 1
-------------

ADDED:
Expand Down
127 changes: 126 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,127 @@
# silly-math
Math functions for make your life easier
# Overview

<div align="center">

[![Build Status](https://travis-ci.org/astrapi69/silly-math.svg?branch=develop)](https://travis-ci.org/astrapi69/silly-math)
[![Coverage Status](https://coveralls.io/repos/github/astrapi69/silly-math/badge.svg?branch=develop)](https://coveralls.io/github/astrapi69/silly-math?branch=develop)
[![Open Issues](https://img.shields.io/github/issues/astrapi69/silly-math.svg?style=flat)](https://github.com/astrapi69/silly-math/issues)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/de.alpharogroup/silly-math/badge.svg)](https://maven-badges.herokuapp.com/maven-central/de.alpharogroup/silly-math)
[![Javadocs](http://www.javadoc.io/badge/de.alpharogroup/silly-math.svg)](http://www.javadoc.io/doc/de.alpharogroup/silly-math)
[![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](http://opensource.org/licenses/MIT)

</div>

Utility library that holds math functions to make your life easier

## License

The source code comes under the liberal MIT License, making silly-math great for all types of applications.

## Maven dependency

Maven dependency is now on sonatype.
Check out [sonatype repository](https://oss.sonatype.org/index.html#nexus-search;gav~de.alpharogroup~silly-math~~~) for latest snapshots and releases.

Add the following maven dependency to your project `pom.xml` if you want to import the core functionality of silly-math:

Than you can add the dependency to your dependencies:

<properties>
...
<!-- SILLY-COLLECTIONS version -->
<silly-math.version>1</silly-math.version>
...
</properties>
...
<dependencies>
...
<!-- SILLY-COLLECTIONS DEPENDENCY -->
<dependency>
<groupId>de.alpharogroup</groupId>
<artifactId>silly-math</artifactId>
<version>${silly-math.version}</version>
</dependency>
...
</dependencies>

## Semantic Versioning

The versions of silly-math are maintained with the Simplified Semantic Versioning guidelines.

Release version numbers will be incremented in the following format:

`<major>.<minor>.<patch>`

For detailed information on versioning for this project you can visit this [wiki page](https://github.com/lightblueseas/mvn-parent-projects/wiki/Simplified-Semantic-Versioning).

## Want to Help and improve it? ###

The source code for silly-math are on GitHub. Please feel free to fork and send pull requests!

Create your own fork of [astrapi69/silly-math/fork](https://github.com/astrapi69/silly-math/fork)

To share your changes, [submit a pull request](https://github.com/astrapi69/silly-math/pull/new/develop).

Don't forget to add new units tests on your changes.

## Contacting the Developers

Do not hesitate to contact the silly-math developers with your questions, concerns, comments, bug reports, or feature requests.
- Feature requests, questions and bug reports can be reported at the [issues page](https://github.com/astrapi69/silly-math/issues).

## Note

No animals were harmed in the making of this library.


# Donations

If you like this library, please consider a donation through bitcoin or over bitcoin-cash with:

36JxRRDfRazLNqUV6NsywCw1q7TK38ukpC

or over ether with:

0x588Aa02De98B1Ef70afeDC3ec5290130a3E5e273

or over flattr:

<a href="https://flattr.com/submit/auto?fid=r7vp62&url=https%3A%2F%2Fgithub.com%2Fastrapi69%2Fsilly-math" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" />
</a>

## Similar projects

Here is a list of awesome similar projects:

Open Source:

* [commons-math](http://commons.apache.org/proper/commons-math/) The Apache Commons Mathematics Library
* [Colt](https://dst.lbl.gov/ACSSoftware/colt/) Colt provides a set of Open Source Libraries for High Performance Scientific and Technical Computing in Java.

## Credits

|**Travis CI**|
| :---: |
|![Travis CI](https://travis-ci.com/images/logos/TravisCI-Full-Color.png) <img width=500/>|
|Special thanks to [Travis CI](https://travis-ci.org) for providing a free continuous integration service for open source projects|
| <img width=1000/> |

|**Nexus Sonatype repositories**|
| :---: |
|![sonatype repository](https://avatars1.githubusercontent.com/u/33330803?s=200&v=4)|
|Special thanks to [sonatype repository](https://www.sonatype.com) for providing a free maven repository service for open source projects|
| <img width=1000/> |

|**coveralls.io**|
| :---: |
|![Coverage Status](https://coveralls.io/repos/github/astrapi69/mystic-crypt/badge.svg)|
|Special thanks to [coveralls.io](https://coveralls.io) for providing a free code coverage for open source projects|
| <img width=1000/> |

|**javadoc.io**|
| :---: |
|[![Javadocs](http://www.javadoc.io/badge/de.alpharogroup/silly-math.svg)](http://www.javadoc.io/doc/de.alpharogroup/silly-math)|
|Special thanks to [javadoc.io](http://www.javadoc.io) for providing a free javadoc documentation for open source projects|
| <img width=1000/> |
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>

<artifactId>silly-math</artifactId>
<version>1-SNAPSHOT</version>
<version>1</version>

<name>${project.artifactId}</name>

Expand Down

0 comments on commit 93a2251

Please sign in to comment.