File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 3.0.0] - 2022-11-06
11+
1012### Changed
1113
1214- Shipped code has been changed from ES2015 to ES2021. Node.js >=16 is required.
@@ -71,5 +73,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7173
7274- Treat comma and dot as separator (Issue: [ #4 ] ( https://github.com/pocka/slack-message-parser/issues/4 ) , PR: [ #5 ] ( https://github.com/pocka/slack-message-parser/pull/5 ) ).
7375
74- [ Unreleased ] : https://github.com/pocka/slack-message-parser/compare/v2.0.2...HEAD
76+ [ Unreleased ] : https://github.com/pocka/slack-message-parser/compare/v3.0.0...HEAD
77+ [ 3.0.0 ] : https://github.com/pocka/slack-message-parser/compare/v2.0.2...v3.0.0
7578[ 2.0.2 ] : https://github.com/pocka/slack-message-parser/compare/v2.0.1...v2.0.2
Original file line number Diff line number Diff line change @@ -19,11 +19,10 @@ console.dir(parse("Slack *message* ~to~ _parse_"));
1919
2020## Deno
2121
22- This library is not registered to ` deno.land ` yet.
23- Please use ` raw.githubusercontent.com ` for a moment.
22+ Import from ` https://deno.land/x/slack_message_parser@<VERSION>/mod.ts ` .
2423
2524``` js
26- import { parse } from " https://raw.githubusercontent.com/pocka/slack-message-parser/master /mod.ts" ;
25+ import {
parse }
from " https://deno.land/x/[email protected] /mod.ts" ;
2726
2827console .dir (parse (" Slack *message* ~to~ _parse_" ));
2928```
@@ -33,7 +32,7 @@ console.dir(parse("Slack *message* ~to~ _parse_"));
3332Use NPM-to-ESM service such as [ Skypack] ( https://www.skypack.dev/ ) .
3433
3534``` js
36- import { parse } from " https://cdn.skypack.dev/slack-message-parser@^2 .0.2 " ;
35+ import { parse } from " https://cdn.skypack.dev/slack-message-parser@^3 .0.0 " ;
3736
3837console .dir (parse (" Slack *message* ~to~ _parse_" ));
3938```
You can’t perform that action at this time.
0 commit comments