Skip to content

Commit

Permalink
update to 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Yikai-Liao committed Dec 9, 2023
1 parent 485581f commit ddb2171
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ pip install ./symusic
* [minimidi](https://github.com/lzqlzzq/minimidi/tree/main) : A fast and lightweight midi parsing library written in cpp, which is the foundation of this project.
* [pybind11](https://github.com/pybind/pybind11) : A great header-only library to help you create python binding for your cpp code.
* [pybind11-stubgen](https://github.com/sizmailov/pybind11-stubgen) A nice tool to generate stub files for pybind11 projects.
* [zpp_bits](https://github.com/eyalz800/zpp_bits) : An extraordinary fast and lightweight single header library for serialization and deserialization. I use it to support pickle.
* [geek_time_cpp](https://github.com/adah1972/geek_time_cpp/tree/master) The example code of the book "Modern C++ Programming Practice". We use the [metamacro.h](https://github.com/adah1972/geek_time_cpp/blob/master/40/metamacro.h#L1-L622) in it for shortening the code.


2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def build_extension(self, ext: CMakeExtension) -> None:
# logic and declaration, and simpler if you include description/version in a file.
setup(
name="symusic",
version="0.1.4",
version="0.1.5",
author="Yikai Liao",
author_email="lyk-boya@outlook.com",
description="A high performance MIDI file parser with comprehensible interface.",
Expand Down
2 changes: 1 addition & 1 deletion symusic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .factory import *

__version__ = '0.1.4'
__version__ = '0.1.5'

__all__ = [

Expand Down

0 comments on commit ddb2171

Please sign in to comment.