Skip to content

Commit

Permalink
Fix profiles for set-version
Browse files Browse the repository at this point in the history
Some files were missing or incorrectly specified.
  • Loading branch information
hugoduncan committed Sep 19, 2012
1 parent 323f640 commit 21ba1a8
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 9 deletions.
11 changes: 10 additions & 1 deletion lein-ritz/profiles.clj
Expand Up @@ -3,4 +3,13 @@
{:updates [{:path "README.md" :no-snapshot true}
{:path "src/leiningen/ritz.clj"
:search-regex
#"\"ritz.version\" \"\d+\.\d+\.\d+(-SNAPSHOT)?\""}]}}}
#"\"ritz.version\" \"\d+\.\d+\.\d+(-SNAPSHOT)?\""}
{:path "src/leiningen/ritz.clj"
:search-regex
#"ritz-swank \"\d+\.\d+\.\d+(-SNAPSHOT)?\""}
{:path "src/leiningen/ritz_nrepl.clj"
:search-regex
#"ritz-nrepl \"\d+\.\d+\.\d+(-SNAPSHOT)?\""}
{:path "src/leiningen/ritz_nrepl.clj"
:search-regex
#"ritz-repl-utils \"\d+\.\d+\.\d+(-SNAPSHOT)?\""}]}}}
6 changes: 3 additions & 3 deletions nrepl/profiles.clj
Expand Up @@ -15,6 +15,6 @@
{:path "elisp/nrepl-ritz.el"
:no-snapshot true
:search-regex #";; Version: \d+\.\d+\.\d+"}
{:path "src/ritz/nrepl/project"
:no-snapshot true
:search-regex #"ritz/ritz-nrepl \"\d+\.\d+\.\d+\""}]}}}
{:path "src/ritz/nrepl/project.clj"
:search-regex
#"ritz/ritz-nrepl \"\d+\.\d+\.\d+(-SNAPSHOT)?\""}]}}}
5 changes: 3 additions & 2 deletions project.clj
@@ -1,4 +1,4 @@
(defproject ritz "0.4.2"
(defproject ritz "0.4.3-SNAPSHOT"
:description "Another swank server for clojure in SLIME"
:url "https://github.com/pallet/ritz"
:license {:name "Eclipse Public License"
Expand All @@ -11,4 +11,5 @@
"deploy" ["sub" "deploy"]
"test" ["sub" "with-profile" "default,jdk1.7" "test"]
"doc" ["sub" "with-profile" "codox,jdk1.7" "doc"]
"set-version" ["sub" "with-profile" "release" "set-version"]})
"set-version" ["do" "set-version,"
"sub" "with-profile" "release" "set-version"]})
1 change: 1 addition & 0 deletions release.sh
Expand Up @@ -34,6 +34,7 @@ $EDITOR project.clj

$EDITOR lein-ritz/project.clj
$EDITOR lein-ritz/src/leiningen/ritz.clj
$EDITOR lein-ritz/src/leiningen/ritz_nrepl.clj
$EDITOR lein-ritz/README.md

$EDITOR repl-utils/project.clj
Expand Down
6 changes: 3 additions & 3 deletions swank/profiles.clj
Expand Up @@ -12,6 +12,6 @@
{:path "elisp/slime-ritz.el"
:no-snapshot true
:search-regex #";; Version: \d+\.\d+\.\d+"}
{:path "src/ritz/nrepl/project"
:no-snapshot true
:search-regex #"ritz/ritz-swank \"\d+\.\d+\.\d+\""}]}}}
{:path "src/ritz/swank/project.clj"
:search-regex
#"ritz/ritz-swank \"\d+\.\d+\.\d+(-SNAPSHOT)?\""}]}}}

0 comments on commit 21ba1a8

Please sign in to comment.