Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

Commit fa553f5

Browse files
committed
Update readme and changelog.
1 parent 059e593 commit fa553f5

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
0.1.0
22
---
33
- Initial release.
4+
5+
0.2.0
6+
---
7+
- Feature: Added auto pagination.
8+
- Bug: Added `current_velocity` attribute to `Project`.
9+
- Bug: Removed attributes from `Iteration` that don't exist.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ client.project(project_id, fields: ':default,epics') # Eage
4242

4343
## TODO
4444

45-
- Pagination
46-
- Create, Update, Delete of Resources
45+
- Add missing resources and endpoints
46+
- Add create, update, delete for resources
4747

4848
## Contributing
4949

lib/tracker_api/client.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@ def initialize(options={})
2727
@logger = options.fetch(:logger, Logger.new(nil))
2828
adapter = options.fetch(:adapter, :net_http)
2929
connection_options = options.fetch(:connection_options, { ssl: { verify: true } })
30-
@token = options[:token]
3130
@auto_paginate = options.fetch(:auto_paginate, true)
32-
31+
@token = options[:token]
3332
raise 'Missing required options: :token' unless @token
3433

3534
@connection = Faraday.new({ url: @url }.merge(connection_options)) do |builder|

0 commit comments

Comments
 (0)