Skip to content

Commit

Permalink
chore: jQuery version updated in dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
emreerkan committed Jun 19, 2023
1 parent ac4b49d commit 70b7c89
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
4 changes: 4 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ $('textarea').insertAtCaret('Bar');

## Changelog

[1.2.2] - 2023-06-19

* Chore: Updates jQuery dependency. Now it requires at least 3.5.0 version.

[1.2.1] - 2023-06-19

* Fix: If the contentEditable element does not have focus it was adding the text
Expand Down
4 changes: 2 additions & 2 deletions insert-at-caret.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"text",
"input"
],
"version": "1.2.1",
"version": "1.2.2",
"author": {
"name": "Emre Erkan",
"url": "http://www.karalamalar.net"
Expand All @@ -29,6 +29,6 @@
"docs": "https://github.com/karalamalar/insertAtCaret/wiki",
"download": "https://github.com/karalamalar/insertAtCaret/archive/master.zip",
"dependencies": {
"jquery": ">=1.5"
"jquery": ">=3.5.0"
}
}
2 changes: 1 addition & 1 deletion jquery.insert-at-caret-vsdoc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jQuery insertAtCaret 1.2.1
* jQuery insertAtCaret 1.2.2
* http://www.karalamalar.net/
*
* Copyright (c) 2023 Emre Erkan
Expand Down
2 changes: 1 addition & 1 deletion jquery.insert-at-caret.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jQuery insertAtCaret 1.2.1
* jQuery insertAtCaret 1.2.2
* http://www.karalamalar.net/
*
* Copyright (c) 2023 Emre Erkan
Expand Down
2 changes: 1 addition & 1 deletion jquery.insert-at-caret.min.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jQuery insertAtCaret 1.2.1
* jQuery insertAtCaret 1.2.2
* http://www.karalamalar.net/
*
* Copyright (c) 2023 Emre Erkan
Expand Down
5 changes: 2 additions & 3 deletions karalamalar.insert-at-caret.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,20 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>karalamalar.insert-at-caret</id>
<version>1.2.1</version>
<version>1.2.2</version>
<title>jQuery insertAtCaret</title>
<authors>Emre Erkan</authors>
<owners>Emre Erkan</owners>
<license type="expression">GPL-2.0-or-later</license>
<readme>content/README.md</readme>
<projectUrl>https://github.com/emreerkan/insertAtCaret</projectUrl>
<repository type="git" url="https://github.com/emreerkan/insertAtCaret.git" branch="master" commit="976749eea104cfe4fe3345870883d6cc4a248412" />
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A jQuery plugin which inserts text to a text input or a textarea field at the caret's position.

Base code from: http://stackoverflow.com/a/1064139/84042</description>
<releaseNotes>Support for contenteditable fields</releaseNotes>
<dependencies>
<dependency id="jQuery" version="1.5" />
<dependency id="jQuery" version="3.5.0" />
</dependencies>
</metadata>
<files>
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": "insert-at-caret",
"version": "1.2.1",
"version": "1.2.2",
"description": "A jQuery plugin which inserts text to a text input or a textarea field at the caret's position.",
"main": "jquery.insert-at-caret.js",
"scripts": {
Expand Down

0 comments on commit 70b7c89

Please sign in to comment.