Skip to content

Commit

Permalink
remove rpc module and move to proper semantic versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
grs committed Mar 6, 2019
1 parent 8619046 commit 5808145
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 526 deletions.
3 changes: 0 additions & 3 deletions lib/container.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

var Connection = require('./connection.js');
var log = require('./log.js');
var rpc = require('./rpc.js');
var sasl = require('./sasl.js');
var util = require('./util.js');
var eventTypes = require('./eventTypes.js');
Expand Down Expand Up @@ -91,8 +90,6 @@ Container.prototype.get_option = function (name, default_value) {
Container.prototype.generate_uuid = util.generate_uuid;
Container.prototype.string_to_uuid = util.string_to_uuid;
Container.prototype.uuid_to_string = util.uuid_to_string;
Container.prototype.rpc_server = function(address, options) { return rpc.server(this, address, options); };
Container.prototype.rpc_client = function(address) { return rpc.client(this, address); };
var ws = require('./ws.js');
Container.prototype.websocket_accept = function(socket, options) {
new Connection(options, this).accept(ws.wrap(socket));
Expand Down
244 changes: 0 additions & 244 deletions lib/rpc.js

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rhea",
"version": "0.3.11",
"version": "1.0.0",
"description": "reactive AMQP 1.0 library",
"homepage": "http://github.com/amqp/rhea",
"license": "Apache-2.0",
Expand Down
Loading

0 comments on commit 5808145

Please sign in to comment.