Skip to content

Commit

Permalink
v1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
fpereiro committed Jun 13, 2019
1 parent 03628eb commit 33d85f4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions hitit.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
hitit - v1.2.5
hitit - v1.2.6
Written by Federico Pereiro (fpereiro@gmail.com) and released into the public domain.
*/
Expand Down Expand Up @@ -195,7 +195,7 @@ Written by Federico Pereiro (fpereiro@gmail.com) and released into the public do
['map', map, ['function', 'undefined'], 'oneOf'],
], cb)) return;

if (seq.length === 0) return [];
if (seq.length === 0) return CB (null, []);
var fseq = [];
var counter = 0;
var hist = [];
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "hitit",
"version": "1.2.5",
"version": "1.2.6",
"description": "Minimalistic tool for API testing.",
"dependencies": {
"dale": "4.3.3",
"mime": "1.6.0",
"teishi": "3.13.2"
"teishi": "3.14.1"
},
"main": "hitit.js",
"author": "Federico Pereiro <fpereiro@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ hitit is a minimalistic tool for testing an HTTP(S) API. It is a stopgap until I

## Current status of the project

The current version of hitit, v1.2.5, is considered to be *mostly stable* and *mostly complete*. [Suggestions](https://github.com/fpereiro/hitit/issues) and [patches](https://github.com/fpereiro/hitit/pulls) are welcome. Future changes planned are:
The current version of hitit, v1.2.6, is considered to be *mostly stable* and *mostly complete*. [Suggestions](https://github.com/fpereiro/hitit/issues) and [patches](https://github.com/fpereiro/hitit/pulls) are welcome. Future changes planned are:

- Support for concurrent testing (a.k.a stress testing).

Expand Down

0 comments on commit 33d85f4

Please sign in to comment.