Skip to content

Commit

Permalink
Version bump and CHANGELOG update
Browse files Browse the repository at this point in the history
  • Loading branch information
visoft committed Aug 25, 2012
1 parent 963088b commit 2f18c0c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
18 changes: 16 additions & 2 deletions CHANGELOG.md
Expand Up @@ -61,7 +61,7 @@
* Added the ability to pass additional parameters that are appended to the query string for requests
* Added initial support for feed customizations (SyndicationTitle and SyndicationSummary)
* Enhanced ruby_odata's awareness of classes based on the metadata instead of relying on results that are returned
* Bug Fixes
* Bug Fixes
* Fixed issues with nested collections (eager loading)
* Handled ArgumentError on the Time.parse for older versions of Ruby; used DateTime.parse instead if Time.parse fails
* Removed the camelize method call when building the root URL for collections (Reported by mkoegel, issue #3 on github)
Expand All @@ -85,4 +85,18 @@
* Added the ability to call function imports exposed by the WCF Data Service
* Other
* Changed the test project (for Cucumber integration tests) to use SQL Compact 4, Entity Framework 4.1, and WCF Data Services October 2011 CTP
* Added [Pickle](https://github.com/ianwhite/pickle) integration to simplify Cucumber step definitions
* Added [Pickle](https://github.com/ianwhite/pickle) integration to simplify Cucumber step definitions

### 0.1.1
* New Features
* Added the `count` method (to `QueryBuilder`) for returning a count from an OData service
* Added the `navigate` method (to `QueryBuilder`) in order to handle filtering of children

* Bug Fixes
* Escaped IDs in queries where the ID is a string with spaces

* Other
* Goodbye RDoc; Hello Markdown/YARD
* Refactored exceptions to use proper error classes
* Integrated [Guard](https://github.com/guard/guard) into the test suite for continuous testing
* Integrated [VCR](https://github.com/myronmarston/vcr) into test suite in order to run Cucumber steps without running the test server.
2 changes: 1 addition & 1 deletion lib/ruby_odata/version.rb
@@ -1,5 +1,5 @@
# The ruby_odata namespace
module OData
# The current version of ruby_odata
VERSION = "0.1.0"
VERSION = "0.1.1"
end

0 comments on commit 2f18c0c

Please sign in to comment.