Skip to content

Commit

Permalink
Update Changelog and bump version to 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lxp committed Oct 30, 2022
1 parent d56dc66 commit db46e16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
2022-10-30 - v3.0.0.dev1:
* WARNING: This is a development snapshot, not a stable release.
2022-10-30 - v3.0.0:
* Tested platforms: Linux and FreeBSD. If there is interest in supporting more platforms (e.g. OSX and Windows), please get in contact with the project.
* Support for Python 3 (Thanks to Steven Xu for major contributions).
* Python 3.5 is now the minimum supported version.
Expand Down
2 changes: 1 addition & 1 deletion lib/cfv/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from builtins import range
from builtins import str

__version__ = '3.0.0.dev1'
__version__ = '3.0.0'
__homepage__ = 'https://github.com/cfv-project/cfv'

import copy
Expand Down

2 comments on commit db46e16

@unsound
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI: In addition to Linux / FreeBSD cfv also works fine on macOS (13.0 Ventura tested).

@lxp
Copy link
Member Author

@lxp lxp commented on db46e16 Nov 23, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@unsound Thanks for this data point. Last year I tried to get the test suite running on macOS, which I have not finished.
If you want to give the test suite a try, you could check out cfv from Git and run the tests like described in the README: https://github.com/cfv-project/cfv#from-source
If I remember correctly the main problem was that the default filesystem on macOS is case-insensitve.

If you are a bit familar with Git and Python, you could also try to cherry pick a few changes from this pull request and adapt them: #29
I would happily accept an updated pull request that gets the test suite running on macOS!
This is the associated issue for further discussion: #30

Once we have the test suite passing and a regularly running CI pipeline for it, we can also think about officially supporting macOS.

Please sign in to comment.