diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3abef5fc..6d104314 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.1 +current_version = 0.6.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+)(?P\d+))? diff --git a/README.md b/README.md index 68f1f968..8258317b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Simphony: A Simulator for Photonic circuits

-Development version +Development version PyPI Version PyPI - Python Version Build Status diff --git a/docs/changelog/0.6.0-changelog.md b/docs/changelog/0.6.0-changelog.md new file mode 100644 index 00000000..d293dc1a --- /dev/null +++ b/docs/changelog/0.6.0-changelog.md @@ -0,0 +1,12 @@ +## [0.6.0] - 2022-01-12 + +This version includes Relative Intensity Noise modeling and CMRR. + +### Added + +- Laser RIN model +- Differential Detector CMRR + +### Changed + +- coupling_loss now specified in dB diff --git a/simphony/__init__.py b/simphony/__init__.py index 8dc90544..61603802 100644 --- a/simphony/__init__.py +++ b/simphony/__init__.py @@ -42,7 +42,7 @@ + " detected)." ) -__version__ = "0.5.1" +__version__ = "0.6.0" __license__ = "MIT" __project_url__ = "https://github.com/BYUCamachoLab/simphony" __forum_url__ = "https://github.com/BYUCamachoLab/simphony/issues"