Skip to content

Commit

Permalink
1.0.1 release
Browse files Browse the repository at this point in the history
Summary:
- updated docs with new version
- strong signed assemblies are generated on any OS now
- use data_conversion_compatibility_level=6.0 for Windows testing (TODO: PLAT-6469)

Test Plan: https://app.circleci.com/pipelines/github/memsql/SingleStoreNETConnector/235/workflows/bbf20fb1-be31-4012-ad06-4a35197927d7

Reviewers: pmishchenko-ua

Reviewed By: pmishchenko-ua

Subscribers: engineering-list

JIRA Issues: PLAT-6453, PLAT-6428

Differential Revision: https://grizzly.internal.memcompute.com/D60907
  • Loading branch information
okramarenko committed Feb 6, 2023
1 parent eaf22ac commit b1431b1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1
parameters:
connector-version:
type: string
default: "1.0"
default: "1.0.1"

orbs:
win: circleci/[email protected]
Expand Down
1 change: 1 addition & 0 deletions .circleci/s2ms_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ def check_connection(cluster_id: str, create_db: Optional[str] = None):
if create_db is not None:
cur.execute(f"DROP DATABASE IF EXISTS {create_db}")
cur.execute(f"CREATE DATABASE {create_db}")
cur.execute("SET GLOBAL data_conversion_compatibility_level = '6.0'")
finally:
cur.close()
conn.close()
Expand Down
8 changes: 7 additions & 1 deletion docs/VersionHistory.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

## Release Notes

###1.0
###1.0.1

*Allow RecordsAffected to be read after Close() in SingleStoreDataReader

*Strong name the assembly

###1.0.0

*Add support for `GEOGRAPHY` and `GEOGRAPHYPOINT`

Expand Down
1 change: 0 additions & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

<PropertyGroup>
<SignAssembly>true</SignAssembly>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<AssemblyOriginatorKeyFile>..\..\SingleStoreConnector.snk</AssemblyOriginatorKeyFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PackageReleaseNotes>https://github.com/memsql/SingleStoreNETConnector/blob/master/docs/VersionHistory.md</PackageReleaseNotes>
Expand Down

0 comments on commit b1431b1

Please sign in to comment.