-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop'
- Loading branch information
Showing
135 changed files
with
7,248 additions
and
6,703 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Test | ||
|
||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
go-version: [1.12, 1.13, 1.14, 1.15, 1.16, 1.17, 1.18, 1.19] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
env: | ||
GOPATH: ${{ env.HOME }} | ||
|
||
- name: Test | ||
run: make test | ||
|
||
- name: Test CLI | ||
run: cd unidecode && go run main.go kožušček |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,25 @@ | ||
# Changelog | ||
|
||
## 0.1.1 (2019-04-05) | ||
## [0.2.0] (2022-08-20) | ||
|
||
* use string builder to reduce allocations ([#6]) | ||
* update data | ||
* use empty string instead of `[?]` | ||
* fix missing value of 0x57 in x020.go. fixes [#5] | ||
* update data | ||
|
||
## [0.1.1] (2019-04-05) | ||
|
||
* add go.mod file to identify as a module | ||
|
||
|
||
## 0.1.0 (2016-07-10) | ||
|
||
* Initial Release | ||
|
||
|
||
[#5]: https://github.com/mozillazg/go-unidecode/issues/5 | ||
[#6]: https://github.com/mozillazg/go-unidecode/pull/6 | ||
|
||
[0.1.1]: https://github.com/mozillazg/go-unidecode/compare/v0.1.0...v0.1.1 | ||
[0.2.0]: https://github.com/mozillazg/go-unidecode/compare/v0.1.1...v0.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
module github.com/mozillazg/go-unidecode | ||
|
||
go 1.12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.