Skip to content

Commit 784ef58

Browse files
committed
Version bump
1 parent a6bb5d3 commit 784ef58

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.7.0
2+
current_version = 0.7.1rc0
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<build>\d+))?

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55

66
---
77

8+
## [0.7.1](https://github.com/BYUCamachoLab/simphony/tree/v0.7.0) - <small>2024-01-09</small>
9+
10+
Minor bug fixes.
11+
12+
### Fixed
13+
- Bug in some of the tests after the models were rewritten.
14+
- Bug in string formatting for parameterized filenames in SiEPIC libraries.
15+
16+
---
17+
818
## [0.7.0](https://github.com/BYUCamachoLab/simphony/tree/v0.7.0) - <small>2024-01-06</small>
919

1020
This is a refactor of simphony that uses [SAX](https://github.com/flaport/sax)

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Simphony: A Simulator for Photonic Circuits
22

33
<div style="text-align: center">
4-
<img alt="Development version" src="https://img.shields.io/badge/master-v0.7.0-informational">
4+
<img alt="Development version" src="https://img.shields.io/badge/master-v0.7.1rc0-informational">
55
<a href="https://pypi.python.org/pypi/simphony"><img alt="PyPI Version" src="https://img.shields.io/pypi/v/simphony.svg"></a>
66
<img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/simphony">
77
<a href="https://github.com/BYUCamachoLab/simphony/actions?query=workflow%3A%22build+%28pip%29%22"><img alt="Build Status" src="https://github.com/BYUCamachoLab/simphony/workflows/build%20(pip)/badge.svg"></a>
@@ -10,7 +10,7 @@
1010
<a href="https://pypi.python.org/pypi/simphony/"><img alt="License" src="https://img.shields.io/pypi/l/simphony.svg"></a>
1111
<a href="https://github.com/BYUCamachoLab/simphony/commits/master"><img alt="Latest Commit" src="https://img.shields.io/github/last-commit/BYUCamachoLab/simphony.svg"></a>
1212

13-
<img src="https://github.com/BYUCamachoLab/simphony/blob/v0.7.0beta/docs/simphony_logo.png?raw=true" style="max-width: 500px" alt="Simphony logo">
13+
<img src="https://github.com/BYUCamachoLab/simphony/blob/v0.7.1rc0beta/docs/simphony_logo.png?raw=true" style="max-width: 500px" alt="Simphony logo">
1414
</div>
1515

1616
Simphony, a simulator for photonic circuits, is a fundamental package for designing and simulating photonic integrated circuits with Python.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "simphony"
3-
version = "0.7.0"
3+
version = "0.7.1rc0"
44
description = "Simphony: A simulator for photonic circuits"
55
readme = "README.md"
66
requires-python = ">=3.9"

simphony/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
+ " detected)."
4242
)
4343

44-
__version__ = "0.7.0"
44+
__version__ = "0.7.1rc0"
4545
__license__ = "MIT"
4646
__project_url__ = "https://github.com/BYUCamachoLab/simphony"
4747
__forum_url__ = "https://github.com/BYUCamachoLab/simphony/issues"

0 commit comments

Comments
 (0)