Skip to content

Commit aff88ab

Browse files
committed
fixed typo and created another version
1 parent 780913b commit aff88ab

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [0.1.0] - 2020-01-18
7+
## [0.0.2] - 2020-01-25
8+
9+
### Fixed
10+
- Dependency Issue
11+
12+
## [0.0.1] - 2020-01-18
813

914
### Added
1015
- Initial Commit

setup.py

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

88
setup(
99
name="timeseriesql-matplotlib",
10-
version="0.0.1",
10+
version="0.0.2",
1111
description="A plotting backend for the TimeSeriesQL library",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",

timeseriesql_matplotlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
DateFormatter,
99
)
1010
import numpy as np
11-
from timeseries.plot import Plot
11+
from timeseriesql.plot import Plot
1212

1313
DEFAULT_FIGURE_SIZE = (20, 10)
1414

0 commit comments

Comments
 (0)