Skip to content

Commit

Permalink
Bump version to 0.5.dev0
Browse files Browse the repository at this point in the history
Update CHANGELOG and README with Linux support.
  • Loading branch information
Gediminas Kirsanskas committed Dec 18, 2023
1 parent 7b6a78b commit e324146
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@

### Added

- Linux support.

### Fixed

### Changed

## 0.4.1 - 2023-12-14
## [0.4.1] - 2023-12-14

### Added

Expand All @@ -22,7 +24,7 @@

- Use MIKE 1D NuGet packages v22.0.3 and v22.0.4 for DHI.Mike1D.ResultDataAccess

## [0.4]
## [0.4] - 2023-09-14

### Added

Expand Down Expand Up @@ -85,6 +87,7 @@


[unreleased]: https://github.com/DHI/mikeio1d/compare/v0.4...HEAD
[0.4.1]: https://github.com/DHI/mikeio1d/releases/tag/v0.4.1
[0.4]: https://github.com/DHI/mikeio1d/releases/tag/v0.4
[0.3]: https://github.com/DHI/mikeio1d/releases/tag/v0.3
[0.2]: https://github.com/DHI/mikeio1d/releases/tag/v0.2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Read res1d and xns11 files.
For other MIKE files (Dfs0, Dfs1, Dfs2, Dfsu,...) use the related package [MIKE IO](https://github.com/DHI/mikeio)

## Requirements
* Windows operating system
* Windows operating system (Support for Linux is experimental)
* Python x64 3.6, 3.7 or 3.8
* [VC++ redistributables](https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads) (already installed if you have MIKE)

Expand Down
2 changes: 1 addition & 1 deletion mikeio1d/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
#
__version__ = "0.4.1"
__version__ = "0.5.dev0"

if "64" not in platform.architecture()[0]:
raise Exception("This library has not been tested for a 32 bit system.")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

setuptools.setup(
name="mikeio1d",
version="0.4.1",
version="0.5.dev0",
install_requires=[
'pythonnet<=2.5.2; python_version < "3.7.0"',
'pythonnet>=3.0.0a2; python_version >= "3.7.0"',
Expand Down

0 comments on commit e324146

Please sign in to comment.