Skip to content

Commit

Permalink
Merge branch release/2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alrik committed Nov 8, 2015
2 parents 8025e0d + 12083cb commit 18b7199
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
2015/11/08 - 2.1.0
- Add support for auto loading services when they are defined as string. (#18)

2015/10/28 - 2.0.1
- Add missing config class to package files.

2015/10/25 - 2.0.0
- Rename srvoa to kermit.

2015/10/21 - 1.3.0
- Introduce strict service-manager api, add strict parameter to get, set and remove methods
- Introduce service-manager's strict mode, that is configurable via application config
- Introduce strict service-manager api, add strict parameter to get, set and remove methods.
- Introduce service-manager's strict mode, that is configurable via application config.

2015/10/14 - 1.2.0
- Make ConfigService's configure method accepts empty config hash.
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kermit",
"version": "2.0.1",
"version": "2.1.0",
"description": "Infrastructure for service oriented architecture.",
"author": {
"name": "Alrik Zachert",
Expand All @@ -25,6 +25,7 @@
"foundation",
"config",
"services",
"microservice",
"kermit"
],
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![build status](https://ci.gitlab.com/projects/3656/status.png?ref=master)](https://ci.gitlab.com/projects/3656?ref=master)
[![coverage status](https://coveralls.io/repos/kermit-js/kermit/badge.svg?branch=master&service=github)](https://coveralls.io/github/kermit-js/kermit?branch=master)

# kermit - 2.0.1
# kermit - 2.1.0

- is the **infrastructure** for service oriented architecture (**SOA**) for node.js
- provides **unified interfaces** for writing **modular** apps and (micro-)**services**
Expand Down Expand Up @@ -84,7 +84,7 @@ Avoid having sensible data in vcs.
modules.exports = {
app: {
services: {
demo: require(__dirname + '/../src/DemoService')
demo: __dirname + '/../src/DemoService'
}
},

Expand Down

0 comments on commit 18b7199

Please sign in to comment.