Skip to content

Commit

Permalink
v3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Frasser committed Sep 16, 2021
1 parent 42e39ee commit b8a6eef
Show file tree
Hide file tree
Showing 12 changed files with 95 additions and 25 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Linkify Changelog

## v3.0.1

* Fix React component type declarations
* Include LICENSE file in all published packages

## v3.0.0

### BREAKING CHANGES
Expand Down
89 changes: 76 additions & 13 deletions package-lock.json

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

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linkify",
"version": "3.0.0",
"version": "3.0.1",
"description": "Intelligent link recognition, made easy",
"repository": {
"type": "git",
Expand All @@ -19,7 +19,6 @@
"test": "nyc --reporter=lcov --reporter=text mocha test/index.js",
"test:ci": "karma start test/ci.conf.js --single-run"
},

"author": "Hypercontext",
"license": "MIT",
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/linkify-element/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linkify-element",
"version": "3.0.0",
"version": "3.0.1",
"description": "Browser DOM element interface for linkifyjs",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/linkify-html/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linkify-html",
"version": "3.0.0",
"version": "3.0.1",
"description": "HTML String interface for linkifyjs",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/linkify-jquery/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linkify-jquery",
"version": "3.0.0",
"version": "3.0.1",
"description": "jQuery interface for linkifyjs",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/linkify-plugin-hashtag/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linkify-plugin-hashtag",
"version": "3.0.0",
"version": "3.0.1",
"description": "Hashtag plugin for linkifyjs",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/linkify-plugin-mention/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linkify-plugin-mention",
"version": "3.0.0",
"version": "3.0.1",
"description": "@mentions plugin for linkifyjs",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/linkify-plugin-ticket/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linkify-plugin-ticket",
"version": "3.0.0",
"version": "3.0.1",
"description": "Numeric ticket plugin for linkifyjs",
"main": "index.js",
"scripts": {
Expand Down
7 changes: 5 additions & 2 deletions packages/linkify-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linkify-react",
"version": "3.0.0",
"version": "3.0.1",
"description": "React element interface for linkifyjs",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -30,6 +30,9 @@
"homepage": "https://github.com/Hypercontext/linkifyjs#readme",
"peerDependencies": {
"linkifyjs": "^3.0.0",
"react": ">= 0.14.0"
"react": ">= 15.0.0"
},
"devDependencies": {
"@types/react": "^17.0.21"
}
}
2 changes: 1 addition & 1 deletion packages/linkify-string/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linkify-string",
"version": "3.0.0",
"version": "3.0.1",
"description": "String interface for linkifyjs",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/linkifyjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linkifyjs",
"version": "3.0.0",
"version": "3.0.1",
"description": "Find URLs, email addresses, #hashtags and @mentions in plain-text strings, then convert them into HTML <a> links.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit b8a6eef

Please sign in to comment.