Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

stomper

Package Overview
Dependencies
Maintainers
2
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stomper - npm Package Compare versions

Comparing version
0.2.6
to
0.2.7
+13
-3
lib/stomper.egg-info/PKG-INFO
Metadata-Version: 1.1
Name: stomper
Version: 0.2.6
Version: 0.2.7
Summary: This is a transport neutral client implementation of the STOMP protocol.

@@ -22,6 +22,7 @@ Home-page: https://github.com/oisinmulvihill/stomper

Niki Pore <niki pore at gmail dot com>,
Simon Chopin
Simon Chopin,
Arfrever <https://github.com/Arfrever>,
Ian Weller <https://github.com/ianweller>,
Introduction

@@ -86,2 +87,11 @@ ------------

0.2.7
~~~~~
I forgot to add a MANIFEST.in which makes sure README.md is present. Without
this pip install fails: https://github.com/oisinmulvihill/stomper/issues/3.
Thanks to Ian Weller for noticing this. I've also added in the fix suggested
by Arfrever https://github.com/oisinmulvihill/stomper/issues/1.
0.2.6

@@ -88,0 +98,0 @@ ~~~~~

+1
-1

@@ -128,3 +128,3 @@ """

headers = ''.join(
['%s:%s\n' % (f, v) for f, v in self.headers.items()]
['%s:%s\n' % (f, v) for f, v in sorted(self.headers.items())]
)

@@ -131,0 +131,0 @@ stomp_message = "%s\n%s\n%s%s\n" % (self._cmd, headers, self.body, NULL)

Metadata-Version: 1.1
Name: stomper
Version: 0.2.6
Version: 0.2.7
Summary: This is a transport neutral client implementation of the STOMP protocol.

@@ -22,6 +22,7 @@ Home-page: https://github.com/oisinmulvihill/stomper

Niki Pore <niki pore at gmail dot com>,
Simon Chopin
Simon Chopin,
Arfrever <https://github.com/Arfrever>,
Ian Weller <https://github.com/ianweller>,
Introduction

@@ -86,2 +87,11 @@ ------------

0.2.7
~~~~~
I forgot to add a MANIFEST.in which makes sure README.md is present. Without
this pip install fails: https://github.com/oisinmulvihill/stomper/issues/3.
Thanks to Ian Weller for noticing this. I've also added in the fix suggested
by Arfrever https://github.com/oisinmulvihill/stomper/issues/1.
0.2.6

@@ -88,0 +98,0 @@ ~~~~~

@@ -14,6 +14,7 @@ =======

Niki Pore <niki pore at gmail dot com>,
Simon Chopin
Simon Chopin,
Arfrever <https://github.com/Arfrever>,
Ian Weller <https://github.com/ianweller>,
Introduction

@@ -78,2 +79,11 @@ ------------

0.2.7
~~~~~
I forgot to add a MANIFEST.in which makes sure README.md is present. Without
this pip install fails: https://github.com/oisinmulvihill/stomper/issues/3.
Thanks to Ian Weller for noticing this. I've also added in the fix suggested
by Arfrever https://github.com/oisinmulvihill/stomper/issues/1.
0.2.6

@@ -80,0 +90,0 @@ ~~~~~

@@ -14,3 +14,3 @@ """

ProjectUrl = "https://github.com/oisinmulvihill/stomper"
Version = '0.2.6'
Version = '0.2.7'
Author = 'Oisin Mulvihill'

@@ -48,4 +48,2 @@ AuthorEmail = 'oisin dot mulvihill at gmail com'

PackageData = {
# If any package contains *.txt or *.rst files, include them:
'stomper': ['doc/*.stx'],
}

@@ -52,0 +50,0 @@