Skip to content

Commit

Permalink
release 1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
xrotwang committed Nov 25, 2023
1 parent 3268f7b commit d9f3ea4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changes

## [Unreleased]
## [v1.9.1] - 2023-11-25

- Fixed support for writing comments.

Expand Down
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,15 @@ and writing NEXUS
>>> print(Nexus.from_blocks(Data.from_data(nex.CHARACTERS.get_matrix())))
#NEXUS
BEGIN DATA;
DIMENSIONS NCHAR=10;
FORMAT DATATYPE=STANDARD MISSING=? GAP=- SYMBOLS="01";
MATRIX
t1 1001010000
t2 0101000100
t3 0011101010
t4 0001100001
t5 0001100001;
DIMENSIONS NCHAR=10;
FORMAT DATATYPE=STANDARD MISSING=? GAP=- SYMBOLS="01";
MATRIX
t1 1001010000
t2 0101000100
t3 0011101010
t4 0001100001
t5 0001100001
;
END;
```

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = 'commonnexus'
copyright = '2023, Robert Forkel'
author = 'Robert Forkel'
release = '1.9.1.dev0'
release = '1.9.1'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = commonnexus
version = 1.9.1.dev0
version = 1.9.1
author = Robert Forkel
author_email = [email protected]
description = A nexus (phylogenetics) file reader and writer (.nex, .trees)
Expand Down
2 changes: 1 addition & 1 deletion src/commonnexus/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .nexus import Nexus, Config # noqa: F401
from commonnexus.blocks import Block # noqa: F401

__version__ = '1.9.1.dev0'
__version__ = '1.9.1'

0 comments on commit d9f3ea4

Please sign in to comment.