Skip to content

Commit b8a6eef

Browse files
author
Nick Frasser
committed
v3.0.1
1 parent 42e39ee commit b8a6eef

File tree

12 files changed

+95
-25
lines changed

12 files changed

+95
-25
lines changed

CHANGELOG.md

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

3+
## v3.0.1
4+
5+
* Fix React component type declarations
6+
* Include LICENSE file in all published packages
7+
38
## v3.0.0
49

510
### BREAKING CHANGES

package-lock.json

Lines changed: 76 additions & 13 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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "linkify",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "Intelligent link recognition, made easy",
55
"repository": {
66
"type": "git",
@@ -19,7 +19,6 @@
1919
"test": "nyc --reporter=lcov --reporter=text mocha test/index.js",
2020
"test:ci": "karma start test/ci.conf.js --single-run"
2121
},
22-
2322
"author": "Hypercontext",
2423
"license": "MIT",
2524
"devDependencies": {

packages/linkify-element/package.json

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

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.0",
3+
"version": "3.0.1",
44
"description": "HTML String interface for linkifyjs",
55
"main": "index.js",
66
"scripts": {

packages/linkify-jquery/package.json

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

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.0",
3+
"version": "3.0.1",
44
"description": "Hashtag plugin for linkifyjs",
55
"main": "index.js",
66
"scripts": {

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.0",
3+
"version": "3.0.1",
44
"description": "@mentions plugin for linkifyjs",
55
"main": "index.js",
66
"scripts": {

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.0",
3+
"version": "3.0.1",
44
"description": "Numeric ticket plugin for linkifyjs",
55
"main": "index.js",
66
"scripts": {

packages/linkify-react/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "linkify-react",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "React element interface for linkifyjs",
55
"main": "index.js",
66
"scripts": {
@@ -30,6 +30,9 @@
3030
"homepage": "https://github.com/Hypercontext/linkifyjs#readme",
3131
"peerDependencies": {
3232
"linkifyjs": "^3.0.0",
33-
"react": ">= 0.14.0"
33+
"react": ">= 15.0.0"
34+
},
35+
"devDependencies": {
36+
"@types/react": "^17.0.21"
3437
}
3538
}

packages/linkify-string/package.json

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

packages/linkifyjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "linkifyjs",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "Find URLs, email addresses, #hashtags and @mentions in plain-text strings, then convert them into HTML <a> links.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)