Navigation Menu

Skip to content

Commit

Permalink
Merge branch 'release/0.9.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
sirthias committed Mar 21, 2011
2 parents d7b5831 + 621103a commit 51698a0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,3 +1,7 @@
Version 0.9.1 (2011-03-21)
--------------------------
- Upgraded to parboiled 0.11.0

Version 0.9.0 (2011-02-11)
--------------------------
- Completely overhauled and cleaned up general architecture, split out HTML serialization into AST visitor (thanks to Ravindar Reddy)
Expand Down
14 changes: 9 additions & 5 deletions buildfile
@@ -1,10 +1,14 @@
repositories.remote << 'http://repo1.maven.org/maven2'
repositories.remote << 'http://nexus.scala-tools.org/content/repositories/releases'
repositories.remote << 'http://scala-tools.org/repo-releases'
repositories.remote << 'http://scala-tools.org/repo-snapshots'

repositories.release_to[:url] = 'http://nexus.scala-tools.org/content/repositories/releases'
#repositories.release_to[:url] = 'http://nexus.scala-tools.org/content/repositories/snapshots'
#upload_to = 'scala_tools_releases'
#upload_to = 'scala_tools_snapshots'
upload_to = 'silo'
url, user, pass = Buildr.settings.user[upload_to].values_at('url', 'user', 'pass')
repositories.release_to = { :url => url, :username => user, :password => pass }

VERSION_NUMBER = '0.9.0'
VERSION_NUMBER = '0.9.1'

desc 'The pegdown project'
define 'pegdown' do
Expand All @@ -28,7 +32,7 @@ define 'pegdown' do

meta_inf << file('NOTICE')

PARBOILED_VERSION = '0.10.1'
PARBOILED_VERSION = '0.11.0'
PARBOILED = [
"org.parboiled:parboiled-core:jar:#{PARBOILED_VERSION}",
"org.parboiled:parboiled-core:jar:sources:#{PARBOILED_VERSION}",
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.pegdown</groupId>
<artifactId>pegdown</artifactId>
<version>0.9.0</version>
<version>0.9.1</version>
<inceptionYear>2010</inceptionYear>
<licenses>
<license>
Expand All @@ -16,12 +16,12 @@
<dependency>
<groupId>org.parboiled</groupId>
<artifactId>parboiled-core</artifactId>
<version>0.10.1</version>
<version>0.11.0</version>
</dependency>
<dependency>
<groupId>org.parboiled</groupId>
<artifactId>parboiled-java</artifactId>
<version>0.10.1</version>
<version>0.11.0</version>
</dependency>
</dependencies>
<repositories>
Expand Down

0 comments on commit 51698a0

Please sign in to comment.