Merge pull request #13 from Manishearth/ignore-txt

Ignore .txt files so that they don't get published
This commit is contained in:
Simon Sapin
2017-02-04 17:23:20 +01:00
committed by GitHub
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -2,3 +2,4 @@ target
Cargo.lock
scripts/tmp
*.pyc
*.txt
+2 -2
View File
@@ -1,7 +1,7 @@
[package]
name = "unicode-normalization"
version = "0.1.3"
version = "0.1.4"
authors = ["kwantam <kwantam@gmail.com>"]
homepage = "https://github.com/unicode-rs/unicode-normalization"
@@ -18,4 +18,4 @@ Decomposition and Recomposition, as described in
Unicode Standard Annex #15.
"""
exclude = [ "target/*", "Cargo.lock", "scripts/tmp" ]
exclude = [ "target/*", "Cargo.lock", "scripts/tmp", "*.txt" ]