Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Send ping frame instead of text frame for ping #24

Open
wants to merge 4 commits into
base: ping-message
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 48 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wsta"
version = "0.4.1"
version = "0.5.0"
authors = ["Espen Henriksen <[email protected]>"]
description = "The WebSocket Transfer Agent"

Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/wsta.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Wsta < Formula
desc "A cli tool written in rust for interfacing with WebSocket services."
homepage "https://github.com/esphen/wsta"
url "https://github.com/esphen/wsta/archive/0.4.1.tar.gz"
sha256 "0c031dbf490c98dbc5dab07f16945ba353cd3cd18780094aee17f4782ec0ea57"
url "https://github.com/esphen/wsta/archive/0.5.0.tar.gz"
sha256 "97d277faf0a423910c74e1036df724f16362839196c56d0986de7db15d6ba629"

depends_on 'gpg' => :build
depends_on 'rust' => :build
Expand Down
6 changes: 6 additions & 0 deletions build/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
wsta (0.5.0-0) stable; urgency=low

* Add support for setting custom ping message

-- Espen Henriksen <[email protected]> Sun, 18 Dec 2016 20:16:00 +0100

wsta (0.4.1-0) stable; urgency=low

* Fix argument conflict - profile argument -p is now -P
Expand Down
6 changes: 3 additions & 3 deletions build/wsta.dsc
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Debtransform-Tar: 0.4.1.tar.gz
Debtransform-Tar: 0.5.0.tar.gz
Debtransform-Files-Tar: debian.tar.gz
Format: 1.0
Source: wsta
Binary: wsta
Version: 0.4.1-1
Version: 0.5.0-1
Maintainer: Espen Henriksen <[email protected]>
Architecture: any
Build-Depends: debhelper (>= 4.1.16), libssl-dev (>= 1), gcc (>= 4)
Standards-Version: 3.9.1.0
DEBTRANSFORM-RELEASE: 1
Files:
00000000000000000000000000000000 000000 0.4.1.tar.gz
00000000000000000000000000000000 000000 0.5.0.tar.gz
00000000000000000000000000000000 000000 debian.tar.gz

4 changes: 3 additions & 1 deletion build/wsta.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: wsta
Version: 0.4.1
Version: 0.5.0
Release: 1%{?dist}
Summary: The WebSocket Transfer Agent

Expand Down Expand Up @@ -49,6 +49,8 @@ cp -v wsta.1 $RPM_BUILD_ROOT/usr/local/share/man/man1/wsta.1


%changelog
* Sun Dec 18 2016 Espen Henriksen <[email protected]>
- Add support for setting custom ping message
* Fri Aug 12 2016 Espen Henriksen <[email protected]>
- Fix argument conflict - profile argument -p is now -P
* Thu Aug 11 2016 Espen Henriksen <[email protected]>
Expand Down
Loading