Skip to content

Commit

Permalink
Merge pull request #651 from wmde/deprecate51
Browse files Browse the repository at this point in the history
Prepare release 5.1
  • Loading branch information
Benestar committed Mar 8, 2016
2 parents 2d419ed + d7b8c7f commit 7882fd4
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Wikibase DataModel release notes

## Version 5.1 (dev)
## Version 5.1.0 (dev)

* `Item::copy` and `Property::copy` do not clone immutable objects any more, saving time and memory
* Deprecated `FingerprintHolder` and `StatementListHolder`
Expand Down
2 changes: 1 addition & 1 deletion WikibaseDataModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Jeroen De Dauw < [email protected] >
*/

define( 'WIKIBASE_DATAMODEL_VERSION', '5.0.2' );
define( 'WIKIBASE_DATAMODEL_VERSION', '5.1.0' );

if ( defined( 'MEDIAWIKI' ) && function_exists( 'wfLoadExtension' ) ) {
wfLoadExtension( 'WikibaseDataModel', __DIR__ . '/mediawiki-extension.json' );
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
"dev-master": "5.1.x-dev"
}
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion mediawiki-extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Wikibase DataModel",
"version": "5.0.2",
"version": "5.1.0",
"author": [
"[https://www.mediawiki.org/wiki/User:Jeroen_De_Dauw Jeroen De Dauw]",
"Thiemo Mättig"
Expand Down
3 changes: 2 additions & 1 deletion src/Statement/StatementListHolder.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
* Interface for classes that contain a StatementList.
*
* @since 3.0
* @deprecated since 5.1
* @deprecated since 5.1, will be removed in 6.0 in favor of StatementListProvider, which will then
* give the guarantee to return an object by reference. Changes to that object change the entity.
*
* @license GNU GPL v2+
* @author Thiemo Mättig
Expand Down
3 changes: 2 additions & 1 deletion src/Term/FingerprintHolder.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

/**
* @since 4.1
* @deprecated since 5.1
* @deprecated since 5.1, will be removed in 6.0 in favor of FingerprintProvider, which will then
* give the guarantee to return an object by reference. Changes to that object change the entity.
*
* @licence GNU GPL v2+
* @author Bene* < [email protected] >
Expand Down

0 comments on commit 7882fd4

Please sign in to comment.