Skip to content

Commit 0c1b2b2

Browse files
committed
3.0.0
1 parent 2d8eee2 commit 0c1b2b2

File tree

2 files changed

+55
-15
lines changed

2 files changed

+55
-15
lines changed

CHANGELOG.md

+54-14
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,73 @@
1-
# Genesis js / no-js Changelog
1+
# Change Log for Genesis JS / No JS
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
27

38
## [Unreleased]
49

5-
* Tweak documentation.
10+
## [3.0.0] - 2017-08-24
11+
12+
### Added
13+
- Banner and icon PSDs to assets.
14+
- PHP version check in main plugin file.
15+
- GitHub documents and templates.
16+
- [Code of conduct].
17+
- [Travis CI] support.
18+
- `.gitattributes` file to reduce Git / Composer distributable archive size.
19+
- Coding standards checks and fixes.
20+
21+
### Changed
22+
- [#2]: Bumped minimum required PHP version to **PHP 7.1**.
23+
- [#4]: Improved replacement technique, to avoid parsing class name string with a regular expression (props [Tim Jensen]).
24+
- Bumped minimum required WP version to **WordPress 4.6**.
25+
- Bumped Tested Up To version to 4.8.1.
26+
- Moved PHP 7.1+ code into separate `init.php` file.
27+
- Update documentation.
28+
29+
### Removed
30+
- Explicit load plugin text domain call.
631

732
## [2.1.0] - 2016-08-08
833

9-
* Load plugin text domain.
10-
* Add `composer.json`.
11-
* Better [change log format][changelogformat].
12-
* Tweak documentation.
34+
### Added
35+
- Load plugin text domain.
36+
- `composer.json`.
37+
38+
### Changed
39+
- Better [change log format].
40+
- Update documentation.
1341

1442
## [2.0.0] - 2014-08-23
1543

16-
* GitHub Updater plugin support
17-
* Refactor class into a new file. Stops using half-implemented Singleton pattern.
18-
* Update documentation.
44+
### Added
45+
- GitHub Updater plugin support
46+
47+
### Changed
48+
- Refactor class into a new file. Stops using half-implemented Singleton pattern.
49+
- Update documentation.
1950

2051
## [1.0.1] - 2011-06-02
2152

22-
* Improved plugin so script is hooked in with priority 1 - avoids a theme placing anything before the script (props [Josh Stauffer])
53+
### Fixed
54+
- Hooked in with priority 1 to avoid a theme placing anything before the script (props [Josh Stauffer]).
2355

2456
## 1.0.0 - 2011-05-24
2557

26-
* Initial release.
58+
- Initial release.
59+
60+
[#2]: https://github.com/GaryJones/genesis-js-no-js/issues/2
61+
[#4]: https://github.com/GaryJones/genesis-js-no-js/issues/4
2762

28-
[Unreleased]: https://github.com/GaryJones/genesis-js-no-js/compare/2.1.0...HEAD
63+
[change log format]: http://keepachangelog.com/en/1.0.0/
64+
[Code of conduct]: CODE_OF_CONDUCT.md
65+
[Josh Stauffer]: http://twitter.com/joshstauffer
66+
[Tim Jensen]: https://github.com/timothyjensen
67+
[Travis CI]: https://travis-ci.org/GaryJones/genesis-js-no-js
68+
69+
[Unreleased]: https://github.com/GaryJones/genesis-js-no-js/compare/3.0.0...HEAD
70+
[3.0.0]: https://github.com/GaryJones/genesis-js-no-js/compare/2.1.0...3.0.0
2971
[2.1.0]: https://github.com/GaryJones/genesis-js-no-js/compare/2.0.0...2.1.0
3072
[2.0.0]: https://github.com/GaryJones/genesis-js-no-js/compare/1.0.1...2.0.0
3173
[1.0.1]: https://github.com/GaryJones/genesis-js-no-js/compare/1.0.0...1.0.1
32-
[changelogformat]: https://github.com/olivierlacan/keep-a-changelog#is-there-a-standard-change-log-format
33-
[Josh Stauffer]: http://twitter.com/joshstauffer

genesis-js-no-js.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* Plugin Name: Genesis JS / No JS
2121
* Plugin URI: https://github.com/GaryJones/genesis-js-no-js
2222
* Description: For child themes of the <a href="http://genesis-theme-framework.com/">Genesis Framework</a>. Adds a <code>no-js</code> body class to the front end, and a script on <code>genesis_before</code> which immediately changes the class to <code>js</code> if JavaScript is enabled. This is how WP does things on the back end, to allow differing styles for elements if JavaScript is active or not.
23-
* Version: 2.1.0
23+
* Version: 3.0.0
2424
* Author: Gary Jones
2525
* Author URI: https://gamajo.com
2626
* Text Domain: genesis-js-no-js

0 commit comments

Comments
 (0)