Skip to content

Commit b447527

Browse files
committed
Up version number to 0.10.0
1 parent cae2cd3 commit b447527

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module.exports = function(grunt) {
33

44
var banner = [
55
'/*!',
6-
' * <%= pkg.name %>',
6+
' * Autolinker.js',
77
' * <%= pkg.version %>',
88
' *',
99
' * Copyright(c) <%= grunt.template.today("yyyy") %> <%= pkg.author %>',

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,11 @@ autolinker.link( "Go to www.google.com" );
148148

149149
## Changelog:
150150

151+
### 0.10.0
152+
153+
- Added support for protocol-relative URLs (ex: `//google.com`, which will effectively either have the `http://` or `https://`
154+
protocol depending on the protocol that is hosting the website)
155+
151156
### 0.9.4
152157

153158
- Fixed an issue where a string in the form of `abc:def` would be autolinked as a protocol and domain name URL. Autolinker now

dist/Autolinker.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* autolinker
3-
* 0.9.4
2+
* Autolinker.js
3+
* 0.10.0
44
*
55
* Copyright(c) 2014 Gregory Jacobs <[email protected]>
66
* MIT Licensed. http://www.opensource.org/licenses/mit-license.php

dist/Autolinker.min.js

Lines changed: 2 additions & 2 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": "autolinker",
3-
"version": "0.9.4",
3+
"version": "0.10.0",
44
"description": "Simple utility to automatically link the URLs, email addresses, and Twitter handles in a given block of text/HTML",
55
"main": "dist/Autolinker.js",
66
"directories": {

0 commit comments

Comments
 (0)