Skip to content

Commit 5e41e69

Browse files
author
Nick Frasser
committed
v3.0.2
1 parent b8a6eef commit 5e41e69

File tree

13 files changed

+31
-17
lines changed

13 files changed

+31
-17
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Linkify Changelog
22

3+
## v3.0.2
4+
5+
* Correctly detect hashtags with underscores
6+
* Fix plugin import bug
7+
* Fix `linkify-string` and `linkify-html` type declarations
8+
39
## v3.0.1
410

511
* Fix React component type declarations

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "linkify",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "Intelligent link recognition, made easy",
55
"repository": {
66
"type": "git",

packages/linkify-html/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "linkify-html",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "HTML String interface for linkifyjs",
55
"main": "index.js",
66
"scripts": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = require('linkifyjs/lib/plugin/hashtag');
1+
module.exports = require('linkifyjs/lib/plugins/hashtag');

packages/linkify-plugin-hashtag/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "linkify-plugin-hashtag",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "Hashtag plugin for linkifyjs",
55
"main": "index.js",
66
"scripts": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = require('linkifyjs/lib/plugin/mention');
1+
module.exports = require('linkifyjs/lib/plugins/mention');

packages/linkify-plugin-mention/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "linkify-plugin-mention",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "@mentions plugin for linkifyjs",
55
"main": "index.js",
66
"scripts": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = require('linkifyjs/lib/plugin/ticket');
1+
module.exports = require('linkifyjs/lib/plugins/ticket');

packages/linkify-plugin-ticket/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "linkify-plugin-ticket",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "Numeric ticket plugin for linkifyjs",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)