Skip to content

Commit

Permalink
Fix reported version
Browse files Browse the repository at this point in the history
  • Loading branch information
z4kn4fein committed Feb 7, 2023
1 parent aa50f92 commit 11cb334
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions v7/snapshot.go
Original file line number Diff line number Diff line change
Expand Up @@ -248,15 +248,15 @@ func (snap *Snapshot) evalDetailsForKeyId(id keyID, key string) EvaluationDetail
User: snap.originalUser,
IsDefaultValue: true,
Error: err,
FetchTime: snap.config.fetchTime,
FetchTime: snap.FetchTime(),
}}
}

return EvaluationDetails{Value: value, Data: EvaluationDetailsData{
Key: key,
VariationID: varID,
User: snap.originalUser,
FetchTime: snap.config.fetchTime,
FetchTime: snap.FetchTime(),
MatchedEvaluationRule: newPublicRolloutRuleOrNil(rollout),
MatchedEvaluationPercentageRule: newPublicPercentageRuleOrNil(percentage),
}}
Expand Down
2 changes: 1 addition & 1 deletion v7/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package configcat

// TODO read this from runtime.BuildInfo?
const version = "7.6.0"
const version = "7.8.1"

0 comments on commit 11cb334

Please sign in to comment.