packages feed

twitter-types-lens 0.9.0 → 0.10.0

raw patch · 2 files changed

+8/−2 lines, 2 filesdep ~twitter-typesPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: twitter-types

API changes (from Hackage documentation)

+ Web.Twitter.Types.Lens: data DisplayTextRange
+ Web.Twitter.Types.Lens: displayTextRangeEnd :: Lens' DisplayTextRange Int
+ Web.Twitter.Types.Lens: displayTextRangeStart :: Lens' DisplayTextRange Int
+ Web.Twitter.Types.Lens: statusDisplayTextRange :: Lens' Status (Maybe DisplayTextRange)
- Web.Twitter.Types.Lens: entityBody :: forall a_ag3G a_agqN. Lens (Entity a_ag3G) (Entity a_agqN) a_ag3G a_agqN
+ Web.Twitter.Types.Lens: entityBody :: forall a_ag5L a_agsS. Lens (Entity a_ag5L) (Entity a_agsS) a_ag5L a_agsS
- Web.Twitter.Types.Lens: entityIndices :: forall a_ag3G. Lens' (Entity a_ag3G) EntityIndices
+ Web.Twitter.Types.Lens: entityIndices :: forall a_ag5L. Lens' (Entity a_ag5L) EntityIndices
- Web.Twitter.Types.Lens: searchResultSearchMetadata :: forall body_aeZ2. Lens' (SearchResult body_aeZ2) SearchMetadata
+ Web.Twitter.Types.Lens: searchResultSearchMetadata :: forall body_af17. Lens' (SearchResult body_af17) SearchMetadata
- Web.Twitter.Types.Lens: searchResultStatuses :: forall body_aeZ2 body_aeZb. Lens (SearchResult body_aeZ2) (SearchResult body_aeZb) body_aeZ2 body_aeZb
+ Web.Twitter.Types.Lens: searchResultStatuses :: forall body_af17 body_af1g. Lens (SearchResult body_af17) (SearchResult body_af1g) body_af17 body_af1g

Files

Web/Twitter/Types/Lens.hs view
@@ -44,6 +44,7 @@        , statusWithheldCopyright        , statusWithheldInCountries        , statusWithheldScope+       , statusDisplayTextRange         -- * 'TT.SearchResult'        , TT.SearchResult@@ -256,6 +257,10 @@        , imageSizeTypeHeight        , imageSizeTypeType +       , TT.DisplayTextRange+       , displayTextRangeStart+       , displayTextRangeEnd+        -- * Type aliases and sum types        , TT.UserId        , TT.Friends@@ -315,6 +320,7 @@ makeLenses ''TT.Contributor makeLenses ''TT.ImageSizeType makeLenses ''TT.UploadedMedia+makeLenses ''TT.DisplayTextRange  class AsStatus s where     status_id :: Lens' s TT.StatusId
twitter-types-lens.cabal view
@@ -1,5 +1,5 @@ name:                twitter-types-lens-version:             0.9.0+version:             0.10.0 synopsis:            Twitter JSON types (lens powered) description:         Please see the README on Github at <https://github.com/himura/twitter-types#readme> homepage:            https://github.com/himura/twitter-types@@ -31,6 +31,6 @@     , template-haskell     , text     , time-    , twitter-types >= 0.9 && < 0.10+    , twitter-types >= 0.10 && < 0.11    default-language:    Haskell2010