Skip to content

Commit

Permalink
Updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
AsafMah committed Sep 9, 2024
1 parent 7ccd4f2 commit cb7a578
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.0.0-preview-5] - 2024-09-09

### Fixed
- Proper parsing of booleans for rare cases where the values are returned as integers.
- Reverted new json library to the default one, as it was causing issues with edge cases.

## [1.0.0-preview-4] - 2024-08-27
### Changed
Expand Down
2 changes: 1 addition & 1 deletion azkustodata/internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
package version

// Kusto is the version of this client package that is communicated to the server.
const Kusto = "1.0.0-preview-4"
const Kusto = "1.0.0-preview-5"
2 changes: 1 addition & 1 deletion azkustoingest/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/Azure/azure-kusto-go/azkustoingest
go 1.22

require (
github.com/Azure/azure-kusto-go/azkustodata v1.0.0-preview-4
github.com/Azure/azure-kusto-go/azkustodata v1.0.0-preview-5
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.14.0
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.4.0
Expand Down
6 changes: 3 additions & 3 deletions go.work
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use (
)

replace (
github.com/Azure/azure-kusto-go/azkustodata v1.0.0-preview-4 => ./azkustodata
github.com/Azure/azure-kusto-go/azkustoingest v1.0.0-preview-4 => ./azkustoingest
github.com/Azure/azure-kusto-go/quickstart v1.0.0-preview-4 => ./quickstart
github.com/Azure/azure-kusto-go/azkustodata v1.0.0-preview-5 => ./azkustodata
github.com/Azure/azure-kusto-go/azkustoingest v1.0.0-preview-5 => ./azkustoingest
github.com/Azure/azure-kusto-go/quickstart v1.0.0-preview-5 => ./quickstart
)
9 changes: 7 additions & 2 deletions quickstart/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ module github.com/Azure/azure-kusto-go/quickstart

go 1.22

require github.com/Azure/azure-kusto-go/azkustodata v1.0.0-preview-4
require github.com/Azure/azure-kusto-go/azkustodata v1.0.0-preview-5

require github.com/Azure/azure-kusto-go/azkustoingest v1.0.0-preview-4
require github.com/Azure/azure-kusto-go/azkustoingest v1.0.0-preview-5

require (
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect
Expand Down Expand Up @@ -34,3 +34,8 @@ require (
golang.org/x/sys v0.24.0 // indirect
golang.org/x/text v0.17.0 // indirect
)

replace (
github.com/Azure/azure-kusto-go/azkustodata => ../azkustodata
github.com/Azure/azure-kusto-go/azkustoingest => ../azkustoingest
)

0 comments on commit cb7a578

Please sign in to comment.