Skip to content

Commit 698387d

Browse files
committed
Bump version, formatting, and update changelog
1 parent 92fba86 commit 698387d

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## latest
44

5+
## v0.2.0rc1
6+
7+
- Change package from `micro-manager` to `micro-manager-precice`.
8+
59
## v0.1.0
610

711
- First release of Micro Manager prototype. Important features: Micro Manager can run in parallel, capability to handle bi-directional implicit coupling

setup.py

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,21 @@
1414

1515
setup(
1616
name='micro-manager-precice',
17-
version='v0.1.0',
17+
version='v0.2.0rc1',
1818
description='micro-manager-precice is a package which facilitates two-scale macro-micro coupled simulations using preCICE',
1919
long_description=long_description,
2020
long_description_content_type='text/markdown',
2121
url='https://github.com/precice/micro-manager',
22-
entry_points={'console_scripts': [
23-
'micro_manager=micro_manager.micro_manager:main']},
22+
entry_points={
23+
'console_scripts': ['micro_manager=micro_manager.micro_manager:main']},
2424
author='Ishaan Desai',
2525
author_email='[email protected]',
2626
license='LGPL-3.0',
27-
packages=find_packages(exclude=['examples']),
28-
install_requires=['pyprecice>=2.3.0', 'numpy>=1.13.3', 'mpi4py'],
27+
packages=find_packages(
28+
exclude=['examples']),
29+
install_requires=[
30+
'pyprecice>=2.3.0',
31+
'numpy>=1.13.3',
32+
'mpi4py'],
2933
test_suite='tests',
3034
zip_safe=False)

0 commit comments

Comments
 (0)