Skip to content

Commit

Permalink
v5.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
groue committed Oct 22, 2012
1 parent 8f4b6d9 commit 3844b9d
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -3,7 +3,7 @@ GRMustache


GRMustache is a production-ready implementation of [Mustache](http://mustache.github.com/) templates for MacOS Cocoa and iOS. GRMustache is a production-ready implementation of [Mustache](http://mustache.github.com/) templates for MacOS Cocoa and iOS.


**October 21th, 2012: GRMustache 5.5.1 is out.** [Release notes](GRMustache/blob/master/RELEASE_NOTES.md) **October 22th, 2012: GRMustache 5.5.2 is out.** [Release notes](GRMustache/blob/master/RELEASE_NOTES.md)


Don't miss a single release: follow [@GRMustache](http://twitter.com/GRMustache) on Twitter. Don't miss a single release: follow [@GRMustache](http://twitter.com/GRMustache) on Twitter.


Expand Down
8 changes: 7 additions & 1 deletion RELEASE_NOTES.md
Expand Up @@ -4,9 +4,15 @@ GRMustache Release Notes
You can compare the performances of GRMustache versions at https://github.com/groue/GRMustacheBenchmark. You can compare the performances of GRMustache versions at https://github.com/groue/GRMustacheBenchmark.




## v5.5.2

**Bug fixes**

[Variadic filters](Guides/filters.md) can now return filters, just as filters with a single argument.

## v5.5.1 ## v5.5.1


### Niceties and bug fixes **Niceties and bug fixes**


The `count` method of NSArray, NSSet and NSOrderedSet can now be queried in templates: `{{collection.count}}` renders as expected, and `{{#collection.count}}...{{/}}` can conditionally render a section if and only if the collection is not empty. See [Guides/runtime/context_stack.md](Guides/runtime/context_stack.md#nsarray-nsset-nsorderedset) for a detailed explanation. The `count` method of NSArray, NSSet and NSOrderedSet can now be queried in templates: `{{collection.count}}` renders as expected, and `{{#collection.count}}...{{/}}` can conditionally render a section if and only if the collection is not empty. See [Guides/runtime/context_stack.md](Guides/runtime/context_stack.md#nsarray-nsset-nsorderedset) for a detailed explanation.


Expand Down
2 changes: 1 addition & 1 deletion include/GRMustacheVersion.h
Expand Up @@ -40,5 +40,5 @@
* *
* @since v1.0 * @since v1.0
*/ */
#define GRMUSTACHE_PATCH_VERSION 1 #define GRMUSTACHE_PATCH_VERSION 2


Binary file modified lib/libGRMustache5-MacOS.a
Binary file not shown.
Binary file modified lib/libGRMustache5-iOS.a
Binary file not shown.
2 changes: 1 addition & 1 deletion src/classes/GRMustacheVersion.h
Expand Up @@ -40,5 +40,5 @@
* *
* @since v1.0 * @since v1.0
*/ */
#define GRMUSTACHE_PATCH_VERSION 1 #define GRMUSTACHE_PATCH_VERSION 2


0 comments on commit 3844b9d

Please sign in to comment.