Skip to content

Commit

Permalink
Fixing a regression in the factory, updating copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
avoidwork committed Jan 11, 2019
1 parent c841e1c commit b945dbb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018, Jason Mulligan
Copyright (c) 2019, Jason Mulligan
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -384,5 +384,5 @@ streams.get(id).send({...});
```

## License
Copyright (c) 2018 Jason Mulligan
Copyright (c) 2019 Jason Mulligan
Licensed under the BSD-3-Clause license.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ const fs = require("fs"),
root = __dirname,
pkg = require(path.join(root, "package.json")),
tenso = require(path.join(root, "lib", "tenso.js")),
{bootstrap, each, jsonWrap} = require(path.join(root, "lib", "utility.js"));
{bootstrap, each} = require(path.join(root, "lib", "utility.js")),
{jsonWrap} = require(path.join(root, "lib", "shared.js"));

// Removing default properties
delete args._;
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tenso",
"description": "Tensō is an HTTP/HTTP2 REST API framework",
"version": "10.0.27",
"version": "10.0.28",
"homepage": "http://avoidwork.github.io/tenso",
"author": "Jason Mulligan <[email protected]>",
"repository": {
Expand Down

0 comments on commit b945dbb

Please sign in to comment.