Skip to content

Commit

Permalink
1.4.0 release (#36)
Browse files Browse the repository at this point in the history
* Update composer.json
  * Extended keywords
  * Extended author information
  * Fixed external links

* Update RELEASE-NOTES.md
  * Add notes about the 1.4.0 release
  * Tweak notes about existing releases

* Update README.md
   * Updated for 1.4.0 release
   * Fixed external link

* Update SemanticMetaTags.php
  * Bumped version to 1.4.0

Refs #37
  • Loading branch information
kghbln authored Jun 7, 2017
1 parent aacabfc commit 2ca4379
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 16 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ The recommended way to install Semantic Meta Tags is by using [Composer][compose
```json
{
"require": {
"mediawiki/semantic-meta-tags": "~1.3"
"mediawiki/semantic-meta-tags": "~1.4"
}
}
```
1. From your MediaWiki installation directory, execute
`composer require mediawiki/semantic-meta-tags:~1.3`
`composer require mediawiki/semantic-meta-tags:~1.4`
2. Navigate to _Special:Version_ on your wiki and verify that the package
have been successfully installed.

Expand All @@ -49,7 +49,7 @@ have a look at the contribution guideline.

* [File an issue](https://github.com/SemanticMediaWiki/SemanticMetaTags/issues)
* [Submit a pull request](https://github.com/SemanticMediaWiki/SemanticMetaTags/pulls)
* Ask a question on [the mailing list](https://semantic-mediawiki.org/wiki/Mailing_list)
* Ask a question on [the mailing list](https://www.semantic-mediawiki.org/wiki/Mailing_list)
* Ask a question on the #semantic-mediawiki IRC channel on Freenode.

## Tests
Expand Down
26 changes: 20 additions & 6 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
This file contains the RELEASE-NOTES of the Semantic Meta Tags (a.k.a. SMT) extension.

### 1.4.0

Released on June 7, 2017.

* Requires PHP 5.5 or later
* Requires MediaWiki 1.27 or later
* Requires Semantic MediaWiki 2.4 or later
* `$smtgMetaPropertyPrefixes` to set which prefixes to meta elements should result in rendering as properties rather than names
* Localization updates from https://translatewiki.net

### 1.3.0

Released on July 09, 2016.
Released on July 9, 2016.

* Minor clean-up
* Localization updates from https://translatewiki.net
Expand All @@ -11,13 +21,14 @@ Released on July 09, 2016.

Released on December 19, 2015.

* Requires Semantic MediaWiki 2.2 or later
* Minor clean-up
* Changed value aggregation so that DI values for the same property only appear once
* Localization updates from https://translatewiki.net

### 1.1.0

Released on June 02, 2015.
Released on June 2, 2015.

* Minor clean-up
* Localization updates from https://translatewiki.net
Expand All @@ -27,8 +38,11 @@ Released on June 02, 2015.
Released on February 28, 2015.

* Initial release
* `$smtgTagsProperties` to set which meta tags should be enabled
* Requires PHP 5.3 or later
* Requires MediaWiki 1.23 or later
* Requires Semantic MediaWiki 2.1 or later
* `$smtgTagsProperties` to set which meta elements should be enabled
* `$smtgTagsPropertyFallbackUsage` to set whether the first property that returns
a valid content for an assigned meta tag will be used exclusively
* `$smtgTagsStrings` to describe static content for an assigned meta tag
* `$smtgTagsBlacklist` to generally disable certain meta tags for free assignments
a valid content for an assigned meta element will be used exclusively
* `$smtgTagsStrings` to describe static content for an assigned meta element
* `$smtgTagsBlacklist` to generally disable certain meta elements for free assignments
2 changes: 1 addition & 1 deletion SemanticMetaTags.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public static function load() {
*/
public static function initExtension() {

define( 'SMT_VERSION', '1.4.0-alpha' );
define( 'SMT_VERSION', '1.4.0' );

// Register extension info
$GLOBALS['wgExtensionCredits']['semantic'][] = array(
Expand Down
15 changes: 9 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,31 @@
"smw",
"semantic mediawiki",
"wiki",
"mediawiki"
"mediawiki",
"meta tags",
"meta elements"
],
"homepage": "https://semantic-mediawiki.org/wiki/Extension:SemanticMetaTags",
"homepage": "https://www.semantic-mediawiki.org/wiki/Extension:Semantic_Meta_Tags",
"license": "GPL-2.0+",
"authors": [
{
"name": "mwjames",
"name": "James Hong Kong",
"homepage": "https://www.semantic-mediawiki.org/wiki/User:MWJames",
"role": "Developer"
}
],
"support": {
"email": "semediawiki-user@lists.sourceforge.net",
"issues": "https://github.com/SemanticMediaWiki/SemanticMetaTags/issues",
"irc": "irc://irc.freenode.net/semantic-mediawiki",
"forum": "https://semantic-mediawiki.org/wiki/semantic-mediawiki.org_talk:Community_portal",
"wiki": "https://semantic-mediawiki.org/wiki/",
"forum": "https://www.semantic-mediawiki.org/wiki/semantic-mediawiki.org_talk:Community_portal",
"wiki": "https://www.semantic-mediawiki.org/wiki/",
"source": "https://github.com/SemanticMediaWiki/SemanticMetaTags"
},
"require": {
"php": ">=5.5",
"composer/installers": "1.*,>=1.0.1",
"mediawiki/semantic-media-wiki": "~2.4|~3.0"
"mediawiki/semantic-media-wiki": "~2.4"
},
"require-dev": {
"mediawiki/semantic-media-wiki": "@dev",
Expand Down

0 comments on commit 2ca4379

Please sign in to comment.