This repository has been archived by the owner on Aug 16, 2023. It is now read-only.
Releases: calebd/CMDQueryStringSerialization
Releases · calebd/CMDQueryStringSerialization
Version 0.4.3
Version 0.4.0
This version adds a few handy methods to NSURL
:
-[NSURL cmd_URLWithQueryDictionary:]
Easily set query parameters on a URL-[NSURL cmd_URLByAddingQueryDictionary:]
Easily append query parameters to a URL-[NSURL cmd_queryDictionary]
Get query parameters from a URL
It has also been restructured as a framework so that it can be built with Carthage.
Version 0.3.0
Version 0.3.0 features a new query string writer architecture. I know I rewrote it in version 0.2.0 as well but I am much happier with this. The new architecture will make it much easier to add new types and writing options to the writer.
Version 0.2.0
This is a complete rewrite of the library. It includes:
- More tests
- Travis integration
- It now uses separate classes (
CMDQueryStringReader
andCMDQueryStringWriter
) internally to separate logic - New
CMDQueryStringValueTransformer
class that can be extended to encode arbitrary data types - All internal object serialization now runs through the value transformer.