Skip to content

Commit

Permalink
Fixed endlines. Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
MSeal committed May 17, 2016
1 parent fcc1d72 commit c456d6e
Show file tree
Hide file tree
Showing 10 changed files with 1,081 additions and 1,039 deletions.
35 changes: 35 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Set default behaviour, in case users don't have core.autocrlf set.
* text=auto

# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
*.c text
*.h text
*.sh text
*.less text
*.yaml text
*.yml text
*.conf text
*.ini text
*.json text
*.md text

# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.eot binary
*.svg binary
*.ttf binary
*.woff binary
*.cur binary
*.xpm binary
*.ico binary
*.icns binary
*.so binary
*.dll binary
*.pkl binary
*.zip binary
*.tar.* binary
*.tgz binary
35 changes: 21 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
agglom_cluster Changelog
=======================
2.0.0 - 01/30/2016
------------------
### Improvements
- Added cython compilation for speedup
- Refactored model into more intuitive design
- Removed redundant code paths/repeated copies

1.0.3 - 08/24/2015
------------------
### Improvements
- Added ability to pass a uniqueness flag that forces all quality scores between clusters with the
flag to be 0.
agglom_cluster Changelog
=======================
2.0.1 - 05/16/2016
### Bug
- Fixed bug where graphs with integer nodes would sometimes generate damaged dendrograms

### Improvement
- Fixed line-endings and added gitattributes for better cross-platform development

2.0.0 - 01/30/2016
------------------
### Improvements
- Added cython compilation for speedup
- Refactored model into more intuitive design
- Removed redundant code paths/repeated copies

1.0.3 - 08/24/2015
------------------
### Improvements
- Added ability to pass a uniqueness flag that forces all quality scores between clusters with the
flag to be 0.
914 changes: 457 additions & 457 deletions LICENSE

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include README.md
include LICENSE
include requirements.txt
include README.md
include LICENSE
include requirements.txt

exclude tests
6 changes: 3 additions & 3 deletions hac/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__all__ = ['cluster']

from .cluster import GreedyAgglomerativeClusterer
__all__ = ['cluster']

from .cluster import GreedyAgglomerativeClusterer
Loading

0 comments on commit c456d6e

Please sign in to comment.