Skip to content

Commit

Permalink
Next release preparation - changelog, doc
Browse files Browse the repository at this point in the history
  • Loading branch information
karczk-dnv committed Apr 27, 2021
1 parent 800cd75 commit 011d16c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
13 changes: 8 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
# Upcoming release
`TODO`\
# Changelog
Strictly follows [Semantic Versioning 2.0.0.](https://semver.org/).

## v0.4.0
`2021-04-27`\
\
:rocket: Features:
- findIso3166Country()
- getIso3166Countries()
- isEuropeanUnionMember()
- isValidIso3166Code()

# v0.3.0
## v0.3.0
`2021-04-26`\
\
:rocket: Features:
- isBrowserCompatible()

# v0.2.0
## v0.2.0
`2021-04-20`\
\
:rocket: Features:
Expand All @@ -22,7 +25,7 @@
:bulb: Enhancements:
- sortBy(), sortByInplace() - allow sorting by with same order for all selectors

# v0.1.0
## v0.1.0
`2021-04-13`\
\
Initial public release.
Expand Down
4 changes: 0 additions & 4 deletions DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ compare("Ą", "z"); // returns -1
```

### findIso3166Country()
[`Upcoming release`]
```typescript
import { findIso3166Country } from '@dnvgl/i18n';

Expand Down Expand Up @@ -227,7 +226,6 @@ getDecimalSeparator("de"); // returns ","
```

### getIso3166Countries()
[`Upcoming release`]\
[`ISO 3166 countries`](https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes)
```typescript
import { getIso3166Countries } from '@dnvgl/i18n';
Expand Down Expand Up @@ -284,7 +282,6 @@ isBrowserCompatible(); // returns false, Internet Explorer 11
```

### isEuropeanUnionMember()
[`Upcoming release`]
```typescript
import { isEuropeanUnionMember } from '@dnvgl/i18n';

Expand All @@ -296,7 +293,6 @@ isEuropeanUnionMember("USA"); // returns false
```

### isValidIso3166Code()
[`Upcoming release`]\
Checks whether code has valid length and country exists.
```typescript
import { isValidIso3166Code } from '@dnvgl/i18n';
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ See full details in the [`DOCUMENTATION.md`](DOCUMENTATION.md) file.
[`capitalizeFirstLetter()`](DOCUMENTATION.md#capitalizeFirstLetter), [`formatString()`](DOCUMENTATION.md#formatString), [`lowercaseFirstLetter()`](DOCUMENTATION.md#lowercaseFirstLetter), [`normalizeForSearching()`](DOCUMENTATION.md#normalizeForSearching), [`plural()`](DOCUMENTATION.md#plural)

#### Countries
[`Upcoming release`]\
[`findIso3166Country()`](DOCUMENTATION.md#findIso3166Country), [`getIso3166Countries()`](DOCUMENTATION.md#getIso3166Countries), [`isEuropeanUnionMember()`](DOCUMENTATION.md#isEuropeanUnionMember), [`isValidIso3166Code()`](DOCUMENTATION.md#isValidIso3166Code)

#### Others
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dnvgl/i18n",
"version": "0.3.0",
"version": "0.4.0",
"description": "Set of functions to support multiple languages/cultures in a browser",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand Down

0 comments on commit 011d16c

Please sign in to comment.