Skip to content

Commit

Permalink
Bump python version
Browse files Browse the repository at this point in the history
  • Loading branch information
cjw85 committed Feb 11, 2022
1 parent cabbebe commit bfe032a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.4.3]
### Changed
- Update modbampy version to match C code.

## [v0.4.2]
### Changed
- Include soft-masked reference positions when performing CpG filtering.
Expand Down
3 changes: 2 additions & 1 deletion modbampy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@

import libmodbampy

__version__ = "0.4.1"
# remember to bump version in src/version.h too
__version__ = "0.4.3"
ffi = libmodbampy.ffi
libbam = libmodbampy.lib

Expand Down
4 changes: 2 additions & 2 deletions src/version.h
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

const char *argp_program_version = "0.4.2";
// remember to bump version in modbampy/__init__.py too
const char *argp_program_version = "0.4.3";

0 comments on commit bfe032a

Please sign in to comment.