Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Automated] Sync main after 1.2.0 release #57

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ graalvmCompatible = true
groupId = "io.ballerina.stdlib"
artifactId = "persist.googlesheets-native"
version = "1.2.0"
path = "../native/build/libs/persist.googlesheets-native-1.2.0-SNAPSHOT.jar"
path = "../native/build/libs/persist.googlesheets-native-1.2.0.jar"

[[platform.java17.dependency]]
groupId = "io.ballerina.stdlib"
artifactId = "persist-native"
version = "1.2.0"
path = "./lib/persist-native-1.2.0-20230810-161400-f232e8d.jar"
path = "./lib/persist-native-1.2.0.jar"
2 changes: 1 addition & 1 deletion ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[ballerina]
dependencies-toml-version = "2"
distribution-version = "2201.8.0-20230726-145300-b2bdf796"
distribution-version = "2201.8.0"

[[package]]
org = "ballerina"
Expand Down
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

### Changed

## [1.2.0] - 2023-09-18

### Changed
- [Updated error message in cases of uninitialized spreadsheets](https://github.com/ballerina-platform/ballerina-standard-library/issues/4505)

## [1.1.0] - 2023-06-30

### Changed
- [Update code to preserve local time when converting civil time to string](https://github.com/ballerina-platform/ballerina-standard-library/issues/4575)
- [Updated error messages to be consistent across all data sources](https://github.com/ballerina-platform/ballerina-standard-library/issues/4360)

Expand Down
44 changes: 22 additions & 22 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=io.ballerina.stdlib
version=1.2.0-SNAPSHOT
version=1.2.1-SNAPSHOT

puppycrawlCheckstyleVersion=10.12.1
checkstyleToolVersion=10.12.1
Expand All @@ -11,52 +11,52 @@ testngVersion=7.6.1
gsonVersion=2.10
ballerinaGradlePluginVersion=2.0.1

ballerinaLangVersion=2201.8.0-20230726-145300-b2bdf796
ballerinaLangVersion=2201.8.0

# Direct Dependencies

# Level 01
stdlibIoVersion=1.6.0-20230810-115500-2e569f5
stdlibTimeVersion=2.4.0-20230810-115600-b28bb07
stdlibUrlVersion=2.4.0-20230810-111000-683c6e4
stdlibIoVersion=1.6.0
stdlibTimeVersion=2.4.0
stdlibUrlVersion=2.4.0

# Level 02
stdlibLogVersion=2.9.0-20230810-161500-6d3d1df
stdlibOsVersion=1.8.0-20230810-161400-624a2aa
stdlibLogVersion=2.9.0
stdlibOsVersion=1.8.0

# Level 03
stdlibFileVersion=1.9.0-20230811-093200-875a787
stdlibFileVersion=1.9.0

# Level 05
stdlibHttpVersion=2.10.0-20230811-144100-cac5d57
stdlibHttpVersion=2.10.0

# Level 08
stdlibPersistVersion=1.2.0-20230810-161400-f232e8d
stdlibPersistVersion=1.2.0

# Ballerinax Observer
observeVersion=1.2.0-20230810-105500-5841859
observeInternalVersion=1.2.0-20230810-141300-a348751
observeVersion=1.2.0
observeInternalVersion=1.2.0

# Transitive Dependencies
# Level 01
stdlibConstraintVersion=1.4.0-20230810-133100-e09cfc1
stdlibConstraintVersion=1.4.0

#Level 02
stdlibCryptoVersion=2.5.0-20230810-124300-ddf6788
stdlibTaskVersion=2.5.0-20230810-145800-b191831
stdlibCryptoVersion=2.5.0
stdlibTaskVersion=2.5.0

# Level 03
stdlibCacheVersion=3.7.0-20230811-093200-b83e72c
stdlibMimeVersion=2.9.0-20230810-183500-af95101
stdlibUuidVersion=1.7.0-20230811-093200-dc65fdd
stdlibCacheVersion=3.7.0
stdlibMimeVersion=2.9.0
stdlibUuidVersion=1.7.0

# Level 04
stdlibAuthVersion=2.10.0-20230811-110600-2428623
stdlibJwtVersion=2.10.0-20230811-114700-d48ab2f
stdlibOAuth2Version=2.10.0-20230811-111300-5550652
stdlibAuthVersion=2.10.0
stdlibJwtVersion=2.10.0
stdlibOAuth2Version=2.10.0

# Level 06
stdlibTransactionVersion=1.8.0-20230814-091700-0011487
stdlibTransactionVersion=1.8.0

# Enabled publishing insecure checksums, due to fail to publish to maven central
# Refer https://github.com/gradle/gradle/issues/11308
Expand Down
Loading