Skip to content

Commit

Permalink
rename teamcity-api to teamcity-client
Browse files Browse the repository at this point in the history
  • Loading branch information
acvetkov committed Dec 22, 2015
1 parent bee180f commit 7d00807
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "teamcity-client",
"version": "1.0.0",
"version": "1.0.1",
"description": "Teamcity Client for Node.js",
"main": "out/index.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
```js
const teamcity = require('teamcity-client');

const api = new TeamcityApi({
const api = new TeamcityClient({
host: 'teamcity.domain.com',
path: '/guestAuth/app/rest/'
});
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import _ from 'lodash';
import Build from './build/index';
import Artifact from './artifact/index';

export default class TeamcityApi {
export default class TeamcityClient {

/**
* @param {TeamcityApiOptions} options
Expand Down

0 comments on commit 7d00807

Please sign in to comment.