8000 Merge pull request #13 from Manishearth/ignore-txt · unicode-rs/unicode-normalization@414a14f · GitHub
[go: up one dir, main page]

Skip to content

Commit 414a14f

Browse files
authored
Merge pull request #13 from Manishearth/ignore-txt
Ignore .txt files so that they don't get published
2 parents 7625142 + 0b717f8 commit 414a14f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ target
22
Cargo.lock
33
scripts/tmp
44
*.pyc
5+
*.txt

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "unicode-normalization"
4-
version = "0.1.3"
4+
version = "0.1.4"
55
authors = ["kwantam <kwantam@gmail.com>"]
66

77
homepage = "https://github.com/unicode-rs/unicode-normalization"
@@ -18,4 +18,4 @@ Decomposition and Recomposition, as described in
1818
Unicode Standard Annex #15.
1919
"""
2020

21-
exclude = [ "target/*", "Cargo.lock", "scripts/tmp" ]
21+
exclude = [ "target/*", "Cargo.lock", "scripts/tmp", "*.txt" ]

0 commit comments

Comments
 (0)
0