Skip to content

Commit 1fd1a6e

Browse files
committed
0.0.12
1 parent 7e10418 commit 1fd1a6e

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,13 @@
22

33

44
[![PyPI](https://badge.fury.io/py/freelunch.svg)](https://badge.fury.io/py/freelunch)![Code](https://github.com/MDCHAMP/FreeLunch/workflows/actions%20code%20quality/badge.svg) ![Tests](https://github.com/MDCHAMP/FreeLunch/workflows/actions%20pytest/badge.svg) ![Benchmark](https://github.com/MDCHAMP/FreeLunch/workflows/actions%20pytest%20benchmark/badge.svg) [![Coverage](https://codecov.io/gh/MDCHAMP/FreeLunch/branch/main/graph/badge.svg)](https://codecov.io/gh/MDCHAMP/FreeLunch)
5+
6+
*Please note the minor changes to the `optimiser` call signature since `0.0.11`, details below.*
57
___
68
## About
9+
10+
Freelunch is a convenient python implementation of a number of meta-heuristic optimisation (with an 's') algorithms.
11+
712
___
813

914
## Features

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# This call to setup() does all the work
99
setup(
1010
name="freelunch",
11-
version="0.0.11",
11+
version="0.0.12",
1212
description="Heuristic and meta-heuristic optimisation suite in Python",
1313
long_description=rm,
1414
long_description_content_type="text/markdown",

src/freelunch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.0.11"
1+
__version__ = "0.0.12"
22

33
from freelunch.optimisers import *
44
import freelunch.benchmarks as benchmarks

0 commit comments

Comments
 (0)