Index: trunk/extensions/SemanticMediaWiki/INSTALL |
— | — | @@ -1,4 +1,4 @@ |
2 | | -[[Semantic MediaWiki 1.6]] |
| 2 | +[[Semantic MediaWiki 1.7.1]] |
3 | 3 | |
4 | 4 | Install instructions for the latest SMW version are also online in a more |
5 | 5 | convenient format for reading: |
Index: trunk/extensions/SemanticMediaWiki/RELEASE-NOTES |
— | — | @@ -3,18 +3,15 @@ |
4 | 4 | |
5 | 5 | == SMW 1.7.1 == |
6 | 6 | |
7 | | -THIS IS NOT A RELEASE YET |
| 7 | +Released on March 5, 2012. |
8 | 8 | |
9 | | -Semantic MediaWiki 1.7.1 is currently in beta-quality and is not recommended for use in |
10 | | -production until the actual release. |
11 | | - |
12 | | -* Added "Last editor is" and "Is a new page" special properties (bug 34359). |
13 | 9 | * Added basic support for OpenLink Virtuoso RDF database. In addition to |
14 | 10 | $smwgDefaultStore = 'SMWSparqlStore', users should set |
15 | 11 | $smwgSparqlDatabase = 'SMWSparqlDatabaseVirtuoso' and use Virtuoso's SPARQL |
16 | 12 | endpoint at ./sparql/ for query and update alike. for further remarks and known |
17 | 13 | limitations, see the file ./includes/sparql/SMW_SparqlDatabaseVirtuoso.php . |
18 | 14 | * Added ability to sort dates as dates in tables generated by SMW (bug 25768). |
| 15 | +* Added "Last editor is" and "Is a new page" special properties (bug 34359). |
19 | 16 | * When there are only invalid query conditions, query answering is stopped (bug 33177). |
20 | 17 | * Fixed display of nearby values on Special:SearchByProperty (bug 34178). |
21 | 18 | * Fixed display of URL values (bug 34312, 34044). |
Index: trunk/extensions/SemanticMediaWiki/SemanticMediaWiki.php |
— | — | @@ -34,7 +34,7 @@ |
35 | 35 | } |
36 | 36 | |
37 | 37 | // The SMW version number. |
38 | | -define( 'SMW_VERSION', '1.7.1 beta 1' ); |
| 38 | +define( 'SMW_VERSION', '1.7.1' ); |
39 | 39 | |
40 | 40 | // Registration of the extension credits, see Special:Version. |
41 | 41 | $wgExtensionCredits['semantic'][] = array( |
— | — | @@ -50,6 +50,7 @@ |
51 | 51 | define( 'SEMANTIC_EXTENSION_TYPE', true ); |
52 | 52 | |
53 | 53 | // A flag used to indicate SMW supports Validator style parameter definitions and validation in the SMWResultPrinter class. |
| 54 | +// @deprecated, removal in 1.9 |
54 | 55 | define( 'SMW_SUPPORTS_VALIDATOR', true ); |
55 | 56 | |
56 | 57 | require_once dirname( __FILE__ ) . '/SMW_Settings.php'; |