Skip to content

Commit

Permalink
Update short description of the project (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
abogoyavlensky authored Jan 12, 2024
1 parent 08eb488 commit dfdd879
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![CI](https://github.com/abogoyavlensky/automigrate/actions/workflows/checks.yaml/badge.svg?branch=master)](https://github.com/abogoyavlensky/automigrate/actions/workflows/checks.yaml)
[![cljdoc badge](https://cljdoc.org/badge/net.clojars.abogoyavlensky/automigrate)](https://cljdoc.org/jump/release/net.clojars.abogoyavlensky/automigrate)

Database schema auto-migration tool for Clojure. Define models as plain EDN data
Auto-generated database schema migrations for Clojure. Define models as plain EDN data
and create database schema migrations automatically based on changes to the models.


Expand Down Expand Up @@ -559,7 +559,7 @@ Print doc for all available commands:

```shell
$ clojure -X:migrations help
Database schema auto-migration tool for Clojure.
Auto-generated database migrations for Clojure.

Available commands:
...
Expand Down
4 changes: 2 additions & 2 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
:exec-args {:multithread? false
:test-warn-time 500}}

:check-deps {:extra-deps {com.github.liquidz/antq {:mvn/version "2.8.1165"}
:check-deps {:extra-deps {com.github.liquidz/antq {:mvn/version "2.8.1173"}
; suppress logger output
org.slf4j/slf4j-nop {:mvn/version "2.0.10"}}
org.slf4j/slf4j-nop {:mvn/version "2.0.11"}}
:main-opts ["-m" "antq.core" "--no-diff" "--upgrade" "--force"
"--exclude=io.github.seancorfield/build-clj"
"--exclude=net.clojars.abogoyavlensky/automigrate"]}
Expand Down
2 changes: 1 addition & 1 deletion src/automigrate/help.clj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
(str/join
"\n"
(concat
["Database schema auto-migration tool for Clojure.\n"
["Auto-generated database migrations for Clojure.\n"
"Available commands:"]
all-cmd-descs
["\nRun 'help :cmd COMMAND' for more information on a command.\n"
Expand Down
2 changes: 1 addition & 1 deletion templates/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<name>automigrate</name>
<description>Database schema auto-migration tool for Clojure. Define models as plain EDN and create schema migrations automatically.</description>
<description>Auto-generated database migrations for Clojure. Define models as plain EDN and create schema migrations automatically.</description>
<url>https://github.com/abogoyavlensky/automigrate</url>
<licenses>
<license>
Expand Down
2 changes: 1 addition & 1 deletion test/automigrate/help_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


(deftest test-help-output-for-general-help
(is (= (str "Database schema auto-migration tool for Clojure.\n\n"
(is (= (str "Auto-generated database migrations for Clojure.\n\n"
"Available commands:\n"
" make - Create a new migration based on changes to the models.\n"
" migrate - Run existing migrations and change the database schema.\n"
Expand Down

0 comments on commit dfdd879

Please sign in to comment.