Skip to content

Commit 69de355

Browse files
committed
Release v1.1.0
2 parents ec1c682 + a02b4ac commit 69de355

16 files changed

+2443
-714
lines changed

.eslintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
out
3+
types

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
node_modules
2-
out
3-
types
1+
/node_modules
2+
/out
3+
/types

.mocharc.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"extension": ["ts"],
3+
"require": "ts-node/register"
4+
}

CHANGELOG.md

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

9+
## [1.1.0] - 2021-11-01 ##
10+
11+
[1.1.0]: https://github.com/mfederczuk/deeptools/compare/v1.0.4...v1.1.0
12+
13+
### Fixed ###
14+
15+
* `tsc` is not anymore needed when installing the package - this caused errors.
16+
Don't know how it worked before, but it only started causing troubles for me now.
17+
18+
**DeepTools** now has no regular `dependencies` anymore in general - only `devDependencies`
19+
20+
### Security ###
21+
22+
* Updated dependencies
23+
924
## [1.0.4] - 2020-04-10 ##
1025

26+
[1.0.4]: https://github.com/mfederczuk/deeptools/compare/v1.0.3...v1.0.4
27+
1128
### Security ###
1229

1330
* Updated dependencies
@@ -18,7 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1835

1936
### Fixed ###
2037

21-
* Fixed the signatures and implemention of some functions.
38+
* Fixed the signatures and implementation of some functions.
2239

2340
## [1.0.2] - 2019-12-13 ##
2441

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# DeepTools #
22

3-
[version_shield]: https://img.shields.io/badge/version-1.0.4-blue.svg
3+
[version_shield]: https://img.shields.io/badge/version-1.1.0-blue.svg
44
[latest_release]: https://github.com/mfederczuk/deeptools/releases/latest "Latest Release"
5-
[![version: 1.0.4][version_shield]][latest_release]
5+
[![version: 1.1.0][version_shield]][latest_release]
66
[![Changelog](https://img.shields.io/badge/-Changelog-blue)](./CHANGELOG.md "Changelog")
77

88
## About ##

0 commit comments

Comments
 (0)