Skip to content

Commit 95f3233

Browse files
committed
Fix for words beginning in 2 consonants that are not a cluster (mnemônico, pterodáctilo)
1 parent 8d3dcc0 commit 95f3233

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

ChangeLog.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@
33
## [Unreleased changes]
44
- Use `overloaded strings`
55
- Syllabify the words of a file piped from `stdin` in the command line
6-
- Write tests for the library
76
- Write haddock documentation
87

8+
## [0.1.0.1] - 2018-01-13
9+
### Added
10+
- Fix for words beginning in 2 consonants that are not a cluster (mnemônico, pterodáctilo)
11+
- Rules for upper case letters
12+
- Tests for the library
13+
914
## [0.1.0.0] - 2018-01-10
1015
### Added
1116
- The github repository `jjunho/Syllable`

Syllable.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
--
33
-- see: https://github.com/sol/hpack
44
--
5-
-- hash: 6ca034cb779638670afecde4c9e9a8c9c7dee5c7475284520bdc9229c73ffc4f
5+
-- hash: 17e46d381ce1357ffa74aa6a976d01c16709e4b855af2fa34cb2f069c076f65d
66

77
name: Syllable
8-
version: 0.1.0.0
8+
version: 0.1.0.1
99
synopsis: Syllabification in Portuguese
1010
description: Please see the README on Github at <https://github.com/jjunho/Syllable#readme>
1111
category: Natural Language Processing

package.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Syllable
2-
version: 0.1.0.0
2+
version: 0.1.0.1
33
github: "jjunho/Syllable"
44
license: BSD3
55
author: "Juliano Paiva Junho"

test/Syllable/PortSpec.hs

+2
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,5 @@ spec =
3939
strSyllables "Piauí" `shouldBe` "Pi au í"
4040
it "transclínico" $
4141
strSyllables "transclínico" `shouldBe` "trans clí ni co"
42+
it "pterodáctilo" $
43+
strSyllables "pterodáctilo" `shouldBe` "pte ro dác ti lo"

0 commit comments

Comments
 (0)