From 259953145cba7cce0c6e7e5adae42d887e8b5a13 Mon Sep 17 00:00:00 2001 From: pron Date: Wed, 20 Aug 2014 16:47:09 +0300 Subject: [PATCH] Prepare release (0.7.1) --- README.md | 4 ++-- build.gradle | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 46aad934..278bc663 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # *Capsule*
Dead-Simple Packaging and Deployment for JVM Apps -[![Build Status](http://img.shields.io/travis/puniverse/capsule.svg?style=flat)](https://travis-ci.org/puniverse/capsule) [![Dependency Status](https://www.versioneye.com/user/projects/539704a483add7f80a000030/badge.svg?style=flat)](https://www.versioneye.com/user/projects/539704a483add7f80a000030) [![Version](http://img.shields.io/badge/version-0.7.0-blue.svg?style=flat)](https://github.com/puniverse/capsule/releases) [![License](http://img.shields.io/badge/license-EPL-blue.svg?style=flat)](https://www.eclipse.org/legal/epl-v10.html) +[![Build Status](http://img.shields.io/travis/puniverse/capsule.svg?style=flat)](https://travis-ci.org/puniverse/capsule) [![Dependency Status](https://www.versioneye.com/user/projects/539704a483add7f80a000030/badge.svg?style=flat)](https://www.versioneye.com/user/projects/539704a483add7f80a000030) [![Version](http://img.shields.io/badge/version-0.7.1-blue.svg?style=flat)](https://github.com/puniverse/capsule/releases) [![License](http://img.shields.io/badge/license-EPL-blue.svg?style=flat)](https://www.eclipse.org/legal/epl-v10.html) Capsule is a dead-easy deployment package for standalone JVM applications. Capsule lets you package your entire application into a single JAR file and run it like this `java -jar app.jar`. That's it. You don't need platform-specific startup scripts, and no JVM flags: the application capsule contains all the JVM configuration options. It supports native libraries, custom boot class-path, and Java agents. It can automatically download Maven dependencies when the program is first launched if you choose not to embed them in the capsule, and it can even automatically download a new version of your application when it is published to a Maven repository. @@ -32,7 +32,7 @@ With Capsule, you just distribute a single JAR and run it. or: - co.paralleluniverse:capsule:0.7.0 + co.paralleluniverse:capsule:0.7.1 On Maven Central. diff --git a/build.gradle b/build.gradle index 2c31100a..b0ebee91 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ subprojects { [compileJava, compileTestJava]*.options*.encoding = 'UTF-8' group = "co.paralleluniverse" - version = "0.7.1-SNAPSHOT" + version = "0.7.1" status = "integration" description = "Simple Java deployment" ext.url = "https://github.com/puniverse/capsule"