Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
diosney committed Jul 4, 2016
1 parent 9c8fba7 commit b94f5bb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Release notes

### 0.3.3

- (@derfel) Added support for source and destination ports.

### 0.3.2

- Fixed typo in docs.
Expand Down
4 changes: 2 additions & 2 deletions lib/iptables/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ exports.processCommonRuleSpecs = function (options) {
manage_arg(options.destination, '--destination', args);
manage_arg(options['in-interface'], '--in-interface', args);
manage_arg(options['out-interface'], '--out-interface', args);
manage_arg(options['source-port'], '--sport', args);
manage_arg(options['destination-port'], '--dport', args);
manage_arg(options['source-port'], '--source-port', args);
manage_arg(options['destination-port'], '--destination-port', args);
manage_arg(options.fragment, '--fragment', args, true);

/*
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "netfilter",
"version": "0.3.2",
"version": "0.3.3",
"description": "Packet filtering framework. Wrapper to provide netfilter capabilities from Node.js",
"main": "index.js",
"keywords": [
Expand Down

0 comments on commit b94f5bb

Please sign in to comment.