From b9b8b1a7805224a62c3bb00beb0e57ead05fb238 Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Fri, 10 Mar 2017 21:39:01 +0100 Subject: [PATCH] Smack 4.2.0 --- README.md | 14 ++- resources/releasedocs/changelog.html | 134 +++++++++++++++++++++++++++ version.gradle | 4 +- 3 files changed, 145 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index f4026b3e1..f9ec1f48b 100644 --- a/README.md +++ b/README.md @@ -3,20 +3,23 @@ Smack [![Build Status](https://travis-ci.org/igniterealtime/Smack.svg?branch=master)](https://travis-ci.org/igniterealtime/Smack) [![Coverage Status](https://coveralls.io/repos/igniterealtime/Smack/badge.svg)](https://coveralls.io/r/igniterealtime/Smack) [![Project Stats](https://www.openhub.net/p/smackxmpp/widgets/project_thin_badge.gif)](https://www.openhub.net/p/smackxmpp) [![Flattr this git repo](http://api.flattr.com/button/flattr-badge-large.png)](https://flattr.com/thing/3480125) [![Visit our IRC channel](https://kiwiirc.com/buttons/irc.freenode.net/smack.png)](https://kiwiirc.com/client/irc.freenode.net/smack) -Instructions how to use Smack in your Java or Android project are provided in the [Smack 4.1 Readme and Upgrade Guide](https://github.com/igniterealtime/Smack/wiki/Smack-4.1-Readme-and-Upgrade-Guide). - About ----- -[Smack] is an open source, highly modular, easy to use, XMPP client library written in Java for JVMs and Android. +[Smack] is an open source, highly modular, easy to use, XMPP client library written in Java for Java SE compatible JVMs and Android. -A pure Java library, it can be embedded into your applications to create anything from a full XMPP client to simple XMPP integrations such as sending notification messages and presence-enabling devices. +A pure Java library, it can be embedded into your applications to create anything from a full XMPP instant messaging client to simple XMPP integrations such as sending notification messages and presence-enabling devices. Smack and XMPP allows you to easily exchange data, in various ways e.g. fire-and-forget, publish-subscribe, between human and non-human endpoints (M2M, IoT, …). Confused? Have a look at the [Overview](documentation/overview.md). [Smack] - an [Ignite Realtime] community project. +Getting started +--------------- + +Instructions how to use Smack in your Java or Android project are provided in the [Smack 4.2 Readme and Upgrade Guide](https://github.com/igniterealtime/Smack/wiki/Smack-4.2-Readme-and-Upgrade-Guide). + Bug Reporting ------------- @@ -48,7 +51,7 @@ The guidelines also contain development quickstart instructions. Resources --------- -- Bug Tracker: http://issues.igniterealtime.org/browse/SMACK +- Bug Tracker: https://issues.igniterealtime.org/browse/SMACK - JaCoCo Coverage Reports: https://www.igniterealtime.org/builds/smack/dailybuilds/jacoco/html/ - Nightly Builds: http://www.igniterealtime.org/downloads/nightly_smack.jsp - Nightly Javadoc: http://www.igniterealtime.org/builds/smack/dailybuilds/javadoc/ @@ -57,6 +60,7 @@ Resources - Dev Forum: http://community.igniterealtime.org/community/developers/smack - Maven Releases: https://oss.sonatype.org/content/repositories/releases/org/igniterealtime/smack/ - Maven Snapshots: https://oss.sonatype.org/content/repositories/snapshots/org/igniterealtime/smack/ +- Nightly Unique Maven Snapshots: https://igniterealtime.org/repo/ Donate ------ diff --git a/resources/releasedocs/changelog.html b/resources/releasedocs/changelog.html index cb513e360..b8909c036 100644 --- a/resources/releasedocs/changelog.html +++ b/resources/releasedocs/changelog.html @@ -141,6 +141,140 @@ hr {
+

4.2.0 -- 2017-03-10

+ +

Sub-task +

+ + +

Bug +

+ + +

New Feature +

+ + +

Task +

+ + +

Improvement +

+

4.1.9 -- 2016-11-19

diff --git a/version.gradle b/version.gradle index 349597016..10fcf691d 100644 --- a/version.gradle +++ b/version.gradle @@ -1,7 +1,7 @@ allprojects { ext { - shortVersion = '4.2.0-rc4' - isSnapshot = true + shortVersion = '4.2.0' + isSnapshot = false jxmppVersion = '0.5.0' smackMinAndroidSdk = 8 }