Skip to content
This repository was archived by the owner on Jan 2, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### 1.2.0 (2017-06-21)

- Add data structures (ArrayList, SingleLinkList, SingleLinkNode, DoubleLinkNode)
- Add interfaces (Indexable, List)
- Simplify Iterator implementations

### 1.1.0 (2017-06-18)

- Add Issues class and Error(), and Warning() functions
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qub",
"version": "1.1.0",
"version": "1.2.0",
"description": "A collection of common data structures and functions",
"main": "output/sources/Qub",
"typings": "output/sources/Qub",
Expand Down
8 changes: 5 additions & 3 deletions tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@
"Add DoubleLinkList<T>": {
"Conceived": "2017-06-20"
},
"Add Array<T>": {
"Conceived": "2017-06-21"
},
"Add FileSystem classes": {
"Conceived": "2017-06-20"
}
},
"CompletedTasks": {
"Release version 1.2.0": {
"Conceived": "2017-06-21",
"Started": "2017-06-21",
"Completed": "2017-06-21"
},
"Replace ArrayListReverseIterator<T> with GenericIndexableReverseIterator<T>": {
"Conceived": "2017-06-21",
"Started": "2017-06-21",
Expand Down