Skip to content
This repository has been archived by the owner on Sep 20, 2019. It is now read-only.

Commit

Permalink
Bump to 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JeroenDeDauw committed Nov 1, 2013
1 parent 25dfa89 commit 76929bd
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
6 changes: 0 additions & 6 deletions .gitreview

This file was deleted.

6 changes: 4 additions & 2 deletions README.md
Expand Up @@ -12,6 +12,8 @@ On Packagist:
Wikibase Database is a simple database abstraction layer. It is inspired by the MediaWiki database
abstraction layer and both improves and extends on it.

View the [release notes](RELEASE-NOTES.md) for recent changes to Wikibase Database.

## Requirements

* PHP 5.3 or later
Expand Down Expand Up @@ -41,11 +43,11 @@ the git repository and take care of loading yourself.
To add this package as a local, per-project dependency to your project, simply add a
dependency on `wikibase/database` to your project's `composer.json` file.
Here is a minimal example of a `composer.json` file that just defines a dependency on
Wikibase Database 1.0:
Wikibase Database 0.1:

{
"require": {
"wikibase/database": "1.0.*"
"wikibase/database": "0.1.*"
}
}

Expand Down
12 changes: 12 additions & 0 deletions RELEASE-NOTES.md
@@ -0,0 +1,12 @@
These are the release notes for the [Wikibase Database library](README.md).

## Version 0.1 (2013-11-01)

Initial release with the following features:

* QueryInterface interface for select, update, insert and delete queries.
* TableBuilder interface for table creation, deletion and existence checking.
* SchemaModifier interface for adding and removing fields and indexes.
* MediaWiki plugin implementing the above interfaces.
* MySQL plugin providing implementations for all SQL builders.
* SQLite plugin providing implementations for all SQL builders.
2 changes: 1 addition & 1 deletion WikibaseDatabase.php
Expand Up @@ -12,7 +12,7 @@
return;
}

define( 'WIKIBASE_DATABASE_VERSION', '0.1 rc' );
define( 'WIKIBASE_DATABASE_VERSION', '0.1' );

spl_autoload_register( function ( $className ) {
$className = ltrim( $className, '\\' );
Expand Down

0 comments on commit 76929bd

Please sign in to comment.