vongosling closed pull request #23: Update SDK Version and changelog URL: https://github.com/apache/rocketmq-client-go/pull/23
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/NOTICE b/NOTICE new file mode 100644 index 0000000..703c28b --- /dev/null +++ b/NOTICE @@ -0,0 +1,5 @@ +Apache RocketMQ +Copyright 2016-2018 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). \ No newline at end of file diff --git a/README.md b/README.md index f49b495..71244fd 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,10 @@ ## Features At present, this SDK supports * sending message in synchronous mode +* sending message in orderly mode +* sending message in oneway mode * consuming message using push model +* consuming message using pull model ---------- ## How to use diff --git a/changelog b/changelog index 2a23ffc..3ca5cb3 100755 --- a/changelog +++ b/changelog @@ -1,3 +1,14 @@ +version 1.2.0 + * support reliable synchronous sending of messages; + * support reliable orderly sending of messages; + * support reliable push consumption model; + * support default cluster consumption; + * support delayed messages; + * support reliable pull consumption model; + * support custom message properties; + * support message Compression. + * support oneway sending of messages. + version 1.0.0 @2018.10.29 * Initialize version of Go client. diff --git a/core/version.go b/core/version.go index 4ac86d5..95ff0f3 100644 --- a/core/version.go +++ b/core/version.go @@ -16,7 +16,7 @@ */ package rocketmq -const GoClientVersion = "Go Client V1.0.0, BuildTime:2018.10.30" +const GoClientVersion = "Go Client V1.2.0, Support CPP Core:V1.2.X" func GetVersion() (version string) { return GoClientVersion ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
