Skip to content

Commit

Permalink
bump version to 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kumarshantanu committed Mar 5, 2011
1 parent 706ebae commit bf1afef
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* Execute Shell Command


## 0.1 / 2011-Feb-??
## 0.1 / 2011-Mar-06

- Liquibase Functionality (commands)
# Update
Expand Down
14 changes: 7 additions & 7 deletions README
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-*- markdown -*-

# Clj-Liquibase v0.1-SNAPSHOT
# Clj-Liquibase v0.1

Clj-Liquibase is a simple Clojure wrapper around the Liquibase library for
carrying out relational database change management and migrations.
Expand Down Expand Up @@ -33,10 +33,10 @@ You will need Maven 2 to build from sources. Execute the following:
Copyright (C) 2011 Shantanu Kumar (kumar[dot]shantanu[at]gmail[dot]com)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
you may not use this software except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
Expand All @@ -61,7 +61,7 @@ Create a new project and include the following dependencies:

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


To use Clj-Liquibase you need to include the required namespace in your application and define a
Expand All @@ -87,7 +87,7 @@ changelog.
After defining the changelog, you need to apply the changes (see below).


;; filename: fooapp/src/fooapp/dbmigrate
;; filename: fooapp/src/fooapp/dbmigrate.clj
(ns fooapp.dbmigrate
(:require [fooapp.dbchange :as dbch]
[org.bituf.clj-dbcp :as dbcp]
Expand All @@ -100,8 +100,8 @@ After defining the changelog, you need to apply the changes (see below).
(defn do-lb-action "Wrap f using DBSpec middleware and execute it"
[f]
(let [g (spec/wrap-dbspec (spec/make-dbspec ds)
(lb/wrap-lb-init f))]
(g)))
(lb/wrap-lb-init f))]
(g)))

(defn do-update "Invoke this function to update the database"
[]
Expand Down
6 changes: 3 additions & 3 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.1-SNAPSHOT</version>
<version>0.1</version>
<name>Clj-Liquibase</name>
<description>
Clj-Liquibase is a simple Clojure wrapper around the Liquibase library
Expand Down Expand Up @@ -45,12 +45,12 @@
<dependency>
<groupId>org.bituf</groupId>
<artifactId>clj-miscutil</artifactId>
<version>0.2-SNAPSHOT</version>
<version>0.2</version>
</dependency>
<dependency>
<groupId>org.bituf</groupId>
<artifactId>clj-dbspec</artifactId>
<version>0.1-SNAPSHOT</version>
<version>0.1</version>
</dependency>
<!-- Test Dependencies -->
<dependency><!-- All Open Source JDBC Drivers available via Maven -->
Expand Down

0 comments on commit bf1afef

Please # to comment.