Skip to content

Commit

Permalink
release/1.1.0: version 1.1.0으로 올리고 release note 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
738 committed Apr 21, 2019
1 parent f2098ed commit c13f909
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 6 deletions.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -36,6 +36,7 @@
| v1.0.5 | 2018.08.11 | inko.js에서 `package.json` 파일을 import하는 부분 제거 | [738](https://github.com/738) |
| v1.0.6 | 2018.08.25 | [#12](https://github.com/738/inko/issues/12) hlhlhl -> ㅚㅗㅣㅗㅣ로 변환되는 버그 수정, [#14](https://github.com/738/inko/issues/14) rtk -> ꦵ로 변환되는 버그 수정, [#15](https://github.com/738/inko/issues/15) 복자음 가능 여부 옵션화, `config` 함수 추가 | [algoshipda](https://github.com/algoshipda), [738](https://github.com/738) |
| v1.0.7 | 2019.04.21 | [#22](https://github.com/738/inko/issues/22) `is한글` 함수에서 "가" ~ "긯" 범위를 한글로 인식하지 않는 버그 수정 | [738](https://github.com/738), [EntryDark](https://github.com/EntryDark) |
| v1.1.0 | 2019.04.22 | [#6](https://github.com/738/inko/issues/6) index.d.ts 지원, [#21](https://github.com/738/inko/issues/21) circleci 연동 | [738](https://github.com/738) |

## Installation

Expand All @@ -55,7 +56,7 @@ yarn add inko

CDN
```html
<script src="https://cdn.jsdelivr.net/npm/inko@1.0.7/inko.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/inko@1.1.0/inko.min.js"></script>
```

Bower
Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "inko",
"version": "1.0.7",
"version": "1.1.0",
"description": "영타를 한글로 쳤을 때, 혹은 한타를 영어로 변환해주는 기능을 가진 자바스크립트 오픈소스 라이브러리입니다.",
"main": "inko.js",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion examples/example.html
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/inko@1.0.7/inko.min.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/inko@1.1.0/inko.min.js"></script>
<title>example</title>
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.babel.js
Expand Up @@ -20,7 +20,7 @@ gulp.task('watch', () => {

gulp.task('build', (cb) => {
pump([gulp.src('index.js'), sourcemaps.init(),
rename('index.min.js'), uglify(), sourcemaps.write('.'),
rename('inko.min.js'), uglify(), sourcemaps.write('.'),
gulp.dest('./'),
], cb);
})
Expand Down
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -68,7 +68,7 @@
option.allowDoubleConsonant : false;
}

Inko.prototype.VERSION = '1.0.7';
Inko.prototype.VERSION = '1.1.0';

Inko.prototype.en2ko = function (input, _option) {
var option = _option || {};
Expand Down
2 changes: 2 additions & 0 deletions inko.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions inko.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "inko",
"version": "1.0.7",
"version": "1.1.0",
"description": "영타를 한글로 쳤을 때, 혹은 한타를 영어로 변환해주는 기능을 가진 자바스크립트 오픈소스 라이브러리입니다.",
"bugs": {
"url": "https://github.com/738/inko/issues",
Expand Down

0 comments on commit c13f909

Please sign in to comment.