Skip to content

Commit

Permalink
bumped version number
Browse files Browse the repository at this point in the history
  • Loading branch information
keithbriggs committed Dec 2, 2022
1 parent 65de67e commit 8f95772
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Three ways are possible:

* The simplest way, direct from PyPI: ``pip install AIMM-simulator``. This will not always get the latest version.

* Download the wheel, typically ``dist/aimm_simulator-2.0.0-py3-none-any.whl`` from github, and run ``pip install <wheel>``.
* Download the wheel, typically ``dist/aimm_simulator-2.x.y-py3-none-any.whl`` from github, and run ``pip install <wheel>``.

* Alternatively, the package can be installed by downloading the complete repository (using the green ``<> Code ⌄`` button) as a zip, unpacking it, and then doing ``make install_local`` from inside the unpacked zip.

Expand All @@ -30,7 +30,7 @@ After installation, run a test with ``python3 examples/basic_test.py``.
Simulator block diagram
-----------------------

The diagram shows the main classes in the code and the relationships between them.
The diagram below (not visible on pypi.org) shows the main classes in the code and the relationships between them.

![AIMM Simulator block diagram](https://github.com/keithbriggs/AIMM-simulator/blob/main/doc/sphinx_source/AIMM_Simulator_block_diagram.png)

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "AIMM_simulator"
version = "2.0.0"
version = "2.0.1"
authors = [
{ name="Keith Briggs", email="k.briggs73@btinternet.com" },
]
Expand Down
2 changes: 1 addition & 1 deletion src/AIMM_simulator/AIMM_simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# | | |
# UE UE UE UE UE UE ...

__version__='2.0.0'
__version__='2.0.1'
'''The AIMM simulator emulates a cellular radio system roughly following 5G concepts and channel models.'''

from os.path import basename
Expand Down

0 comments on commit 8f95772

Please sign in to comment.