Skip to content

Commit db5ccd2

Browse files
committed
🔢Version updates.
1 parent 99432cb commit db5ccd2

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
# Change Log
22

3+
## [0.1.3] - 03/01/2026
4+
5+
- Changed `pyproject.toml` to use python `>= 3.11` instead of `3.14`.
6+
37
## [0.1.2] - 03/01/2026
48

59
- `run_lengths` implemented to count run lengths in BinarySequence.
610
- `inverted`; changed name of method from `invert` to `inverted` and implemented.
711
- `xor` implemented.
812
- Dunder methods for `xor`, `and`, `or` added to enable operators (e.g. ~seq, seq & otherseq) etc. Including adding implementations for `and`, `or` bitwise operations.
9-
- First implementatios of `to_numpy()` and `from_numpy()`, which only import `numpy` if using those particular methods.
13+
- First implementations of `to_numpy()` and `from_numpy()`, which only import `numpy` if using those particular methods.
1014
- Very basic tests added for above methods/properties.
11-
- Changed `pyproject.toml` to use python `>= 3.11` instead of `3.14`.
1215

1316
## [0.1.1] - 23/12/2025
1417

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bseqgen
22

3-
Current Version: 0.1.2
3+
Current Version: 0.1.3
44

55
Small Python library for working with Binary Sequences, with a focus on pseudorandom binary sequences and signal-processing style operations.
66

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "bseqgen"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "Library for generating and working with binary sequences."
55
readme = "README.md"
66
authors = [

0 commit comments

Comments
 (0)