Skip to content

Commit d85d4d7

Browse files
committed
- 0.2.10 readme update
- updated copyright for 2014
1 parent c76b660 commit d85d4d7

File tree

9 files changed

+13
-9
lines changed

9 files changed

+13
-9
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,10 @@ By implementing the functions `getNode` and `getChildNodes`, this library adds p
134134

135135
## Changelog
136136

137+
**0.2.10** -- 2014/04/03
138+
* Added bower support (pr#19 - @bricef)
139+
* Code clean-up for closure compiler issues (pr#20 - @aaronmars)
140+
137141
**0.2.9** -- 2013/08/31
138142
* Added ability to bind ReadLine/Shell to an element.
139143
* Added ability to bind/unbind keys (could be used to replace emacs bindings of readline, but primarily added to unbind some keys for using readline on input elements.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "josh.js",
3-
"version": "0.2.9",
3+
"version": "0.2.10",
44
"homepage": "http://sdether.github.io/josh.js/",
55
"authors": [
66
"Arne Claassen <[email protected]>"

js/example.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*------------------------------------------------------------------------*
2-
* Copyright 2013 Arne F. Claassen
2+
* Copyright 2013-2014 Arne F. Claassen
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

js/history.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ------------------------------------------------------------------------*
2-
* Copyright 2013 Arne F. Claassen
2+
* Copyright 2013-2014 Arne F. Claassen
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

js/input.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ------------------------------------------------------------------------*
2-
* Copyright 2013 Arne F. Claassen
2+
* Copyright 2013-2014 Arne F. Claassen
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

js/killring.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ------------------------------------------------------------------------*
2-
* Copyright 2013 Arne F. Claassen
2+
* Copyright 2013-2014 Arne F. Claassen
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

js/pathhandler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ------------------------------------------------------------------------*
2-
* Copyright 2013 Arne F. Claassen
2+
* Copyright 2013-2014 Arne F. Claassen
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

js/readline.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ------------------------------------------------------------------------*
2-
* Copyright 2013 Arne F. Claassen
2+
* Copyright 2013-2014 Arne F. Claassen
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
1515
*-------------------------------------------------------------------------*/
1616

1717
var Josh = Josh || {};
18-
Josh.Version = "0.2.9";
18+
Josh.Version = "0.2.10";
1919
(function(root) {
2020
Josh.Keys = {
2121
Special: {

js/shell.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ------------------------------------------------------------------------*
2-
* Copyright 2013 Arne F. Claassen
2+
* Copyright 2013-2014 Arne F. Claassen
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)