stomper
Advanced tools
| Metadata-Version: 1.1 | ||
| Name: stomper | ||
| Version: 0.3.0 | ||
| Version: 0.2.9 | ||
| Summary: This is a transport neutral client implementation of the STOMP protocol. | ||
@@ -86,4 +86,9 @@ Home-page: https://github.com/oisinmulvihill/stomper | ||
| This is the default version of the of STOMP used in stomper versions 0.3.x. | ||
| Ralph Bean has worked to add support for this version of STOMP. This will | ||
| become the default protocol used in stomper 0.3.x releases. | ||
| For now it can be used as follows:: | ||
| import stomper.stomp_11 as stomper | ||
| * https://stomp.github.io/stomp-specification-1.1.html | ||
@@ -94,9 +99,5 @@ | ||
| This is no longer the default protocol version. To use it you can import it as | ||
| follows:: | ||
| This is the default version of the of STOMP used in stomper versions 0.2.x. | ||
| The default will change in stomper versions 0.3.x. | ||
| import stomper.stomp_10 as stomper | ||
| This is the default version used in stomper version 0.2.x. | ||
| * https://stomp.github.io/stomp-specification-1.0.html | ||
@@ -108,12 +109,2 @@ | ||
| 0.3.0 | ||
| ~~~~~ | ||
| This release makes STOMP v1.1 the default protocol. To stick with STOMP v1.0 | ||
| you can continue to use stomper v0.2.9 or change the import in your code to:: | ||
| import stomper.stomp_10 as stomper | ||
| **Note** Any fixes to STOMP v1.0 will only be applied to version >= 0.3. | ||
| 0.2.9 | ||
@@ -123,3 +114,2 @@ ~~~~~ | ||
| Thanks to Ralph Bean for contributing the new protocol 1.1 support: | ||
| * https://github.com/oisinmulvihill/stomper/issues/6 | ||
@@ -126,0 +116,0 @@ * https://github.com/oisinmulvihill/stomper/pull/7 |
@@ -1,2 +0,4 @@ | ||
| from stomp_11 import ( | ||
| # TODO, someday switch this to stomp_11 when we trust that it works and is | ||
| # backwards compatible. | ||
| from stomp_10 import ( | ||
| Engine, | ||
@@ -8,3 +10,2 @@ Frame, | ||
| ack, | ||
| nack, | ||
| begin, | ||
@@ -11,0 +12,0 @@ commit, |
@@ -22,3 +22,3 @@ """ | ||
| import stomper.stomp_10 as stomper | ||
| import stomper | ||
@@ -25,0 +25,0 @@ |
@@ -22,4 +22,3 @@ """ | ||
| import stomper | ||
| #.stomp_11 as stomper | ||
| import stomper.stomp_11 as stomper | ||
@@ -26,0 +25,0 @@ |
+9
-19
| Metadata-Version: 1.1 | ||
| Name: stomper | ||
| Version: 0.3.0 | ||
| Version: 0.2.9 | ||
| Summary: This is a transport neutral client implementation of the STOMP protocol. | ||
@@ -86,4 +86,9 @@ Home-page: https://github.com/oisinmulvihill/stomper | ||
| This is the default version of the of STOMP used in stomper versions 0.3.x. | ||
| Ralph Bean has worked to add support for this version of STOMP. This will | ||
| become the default protocol used in stomper 0.3.x releases. | ||
| For now it can be used as follows:: | ||
| import stomper.stomp_11 as stomper | ||
| * https://stomp.github.io/stomp-specification-1.1.html | ||
@@ -94,9 +99,5 @@ | ||
| This is no longer the default protocol version. To use it you can import it as | ||
| follows:: | ||
| This is the default version of the of STOMP used in stomper versions 0.2.x. | ||
| The default will change in stomper versions 0.3.x. | ||
| import stomper.stomp_10 as stomper | ||
| This is the default version used in stomper version 0.2.x. | ||
| * https://stomp.github.io/stomp-specification-1.0.html | ||
@@ -108,12 +109,2 @@ | ||
| 0.3.0 | ||
| ~~~~~ | ||
| This release makes STOMP v1.1 the default protocol. To stick with STOMP v1.0 | ||
| you can continue to use stomper v0.2.9 or change the import in your code to:: | ||
| import stomper.stomp_10 as stomper | ||
| **Note** Any fixes to STOMP v1.0 will only be applied to version >= 0.3. | ||
| 0.2.9 | ||
@@ -123,3 +114,2 @@ ~~~~~ | ||
| Thanks to Ralph Bean for contributing the new protocol 1.1 support: | ||
| * https://github.com/oisinmulvihill/stomper/issues/6 | ||
@@ -126,0 +116,0 @@ * https://github.com/oisinmulvihill/stomper/pull/7 |
+8
-18
@@ -78,4 +78,9 @@ ======= | ||
| This is the default version of the of STOMP used in stomper versions 0.3.x. | ||
| Ralph Bean has worked to add support for this version of STOMP. This will | ||
| become the default protocol used in stomper 0.3.x releases. | ||
| For now it can be used as follows:: | ||
| import stomper.stomp_11 as stomper | ||
| * https://stomp.github.io/stomp-specification-1.1.html | ||
@@ -86,9 +91,5 @@ | ||
| This is no longer the default protocol version. To use it you can import it as | ||
| follows:: | ||
| This is the default version of the of STOMP used in stomper versions 0.2.x. | ||
| The default will change in stomper versions 0.3.x. | ||
| import stomper.stomp_10 as stomper | ||
| This is the default version used in stomper version 0.2.x. | ||
| * https://stomp.github.io/stomp-specification-1.0.html | ||
@@ -100,12 +101,2 @@ | ||
| 0.3.0 | ||
| ~~~~~ | ||
| This release makes STOMP v1.1 the default protocol. To stick with STOMP v1.0 | ||
| you can continue to use stomper v0.2.9 or change the import in your code to:: | ||
| import stomper.stomp_10 as stomper | ||
| **Note** Any fixes to STOMP v1.0 will only be applied to version >= 0.3. | ||
| 0.2.9 | ||
@@ -115,3 +106,2 @@ ~~~~~ | ||
| Thanks to Ralph Bean for contributing the new protocol 1.1 support: | ||
| * https://github.com/oisinmulvihill/stomper/issues/6 | ||
@@ -118,0 +108,0 @@ * https://github.com/oisinmulvihill/stomper/pull/7 |
+1
-1
@@ -14,3 +14,3 @@ """ | ||
| ProjectUrl = "https://github.com/oisinmulvihill/stomper" | ||
| Version = '0.3.0' | ||
| Version = '0.2.9' | ||
| Author = 'Oisin Mulvihill' | ||
@@ -17,0 +17,0 @@ AuthorEmail = 'oisin dot mulvihill at gmail com' |
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
117007
-0.62%