Skip to content

Commit bab9bde

Browse files
authored
Merge pull request #57 from frincon/fix/datetime-not-working
Fix #56 datetime not working
2 parents 130c897 + c4d73c2 commit bab9bde

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

kubernetes-client/package.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: kubernetes-client
2-
version: 0.1.0.1
2+
version: 0.1.0.2
33
description: |
44
Client library for interacting with a Kubernetes cluster.
55
@@ -49,7 +49,7 @@ dependencies:
4949
- http-client >=0.5 && <0.7
5050
- http-client-tls >=0.3
5151
- jose-jwt >=0.8
52-
- kubernetes-client-core ==0.1.0.1
52+
- kubernetes-client-core ==0.1.0.2
5353
- microlens >=0.4 && <0.5
5454
- mtl >=2.2
5555
- oidc-client >=0.4

kubernetes/kubernetes-client-core.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: kubernetes-client-core
2-
version: 0.1.0.1
2+
version: 0.1.0.2
33
synopsis: Auto-generated kubernetes-client-core API Client
44
description: .
55
Client library for calling the Kubernetes API based on http-client.

kubernetes/lib/Kubernetes/OpenAPI/Core.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,10 +440,10 @@ _readDateTime =
440440
_parseISO8601
441441
{-# INLINE _readDateTime #-}
442442

443-
-- | @TI.formatISO8601Millis@
443+
-- | @TI.formatISO8601Micros@
444444
_showDateTime :: (t ~ TI.UTCTime, TI.FormatTime t) => t -> String
445445
_showDateTime =
446-
TI.formatISO8601Millis
446+
TI.formatISO8601Micros
447447
{-# INLINE _showDateTime #-}
448448

449449
-- | parse an ISO8601 date-time string

0 commit comments

Comments
 (0)