Skip to content

Commit

Permalink
bump version to 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kumarshantanu committed Apr 1, 2011
1 parent 1a7cf37 commit b5c8c2a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# Changes and TODO

- [TODO] Improve documentation
- [TODO] Liquibase Functionality (commands)
# Diff
# Generate Changelog
Expand All @@ -14,12 +15,11 @@
* Execute Shell Command


## 0.2 / 2011-Mar-??
## 0.2 / 2011-Apr-01

- Use Clj-DBSpec 0.2
- Remove dependency on Clojure-contrib
- Argument verification in functions/macros - action, change etc.
- [TODO] Improved documentation
- Pre-conditions
- 'Change' implementations
# `create-table` variant that auto-includes a bigint (auto-incr) primary key
Expand Down
8 changes: 5 additions & 3 deletions README
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-*- markdown -*-

# Clj-Liquibase v0.1
# Clj-Liquibase v0.2

Clj-Liquibase is a simple Clojure wrapper around the Liquibase library for
carrying out relational database change management and migrations.
Expand All @@ -10,6 +10,8 @@ Supported actions:
* update
* tag
* rollback
* generate SQL for actions
* generate DB doc


## Usage
Expand Down Expand Up @@ -59,9 +61,9 @@ You can use Clj-Liquibase after including its namespace in your project:
Create a new project and include the following dependencies:


[org.bituf/clj-dbcp "0.4"]
[org.bituf/clj-dbcp "0.5"]
[org.bituf/oss-jdbc "0.4"]
[org.bituf/clj-liquibase "0.1"]
[org.bituf/clj-liquibase "0.2"]


To use Clj-Liquibase you need to include the required namespace in your application and define a
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>org.bituf</groupId>
<artifactId>clj-liquibase</artifactId>
<packaging>jar</packaging>
<version>0.2-SNAPSHOT</version>
<version>0.2</version>
<name>Clj-Liquibase</name>
<description>
Clj-Liquibase is a simple Clojure wrapper around the Liquibase library
Expand Down Expand Up @@ -47,12 +47,12 @@
<dependency>
<groupId>org.bituf</groupId>
<artifactId>clj-miscutil</artifactId>
<version>0.3-SNAPSHOT</version>
<version>0.3</version>
</dependency>
<dependency>
<groupId>org.bituf</groupId>
<artifactId>clj-dbspec</artifactId>
<version>0.2-SNAPSHOT</version>
<version>0.2</version>
</dependency>
<!-- Test Dependencies -->
<dependency><!-- All Open Source JDBC Drivers available via Maven -->
Expand All @@ -64,7 +64,7 @@
<dependency>
<groupId>org.bituf</groupId>
<artifactId>clj-dbcp</artifactId>
<version>0.4</version>
<version>0.5</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit b5c8c2a

Please # to comment.