Skip to content

Commit fecc7ff

Browse files
committed
Merge remote-tracking branch 'origin/master' into process_signals_pre_release
2 parents 058b6c8 + 66ef507 commit fecc7ff

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

HISTORY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# History
22

3+
## 0.0.3 - 2021-09-27
4+
5+
### Features
6+
* Add `process_signals` function to take a collection of primitives and create features for the given data.
7+
38
## 0.0.2 - 2021-02-05
49

510
### Bug Fixes

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.0.3.dev1
2+
current_version = 0.0.4.dev0
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<candidate>\d+))?
@@ -57,4 +57,5 @@ ignore-docstrings = yes
5757
ignore-imports = yes
5858
max-args = 9
5959
good-names = df
60+
disable = unspecified-encoding
6061

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,6 @@
100100
test_suite='tests',
101101
tests_require=tests_require,
102102
url='https://github.com/signals-dev/SigPro',
103-
version='0.0.3.dev1',
103+
version='0.0.4.dev0',
104104
zip_safe=False,
105105
)

sigpro/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
__author__ = """MIT Data To AI Lab"""
66
__email__ = '[email protected]'
7-
__version__ = '0.0.3.dev1'
7+
__version__ = '0.0.4.dev0'
88

99
import os
1010

0 commit comments

Comments
 (0)