diff --git a/CHANGELOG.md b/CHANGELOG.md
index 395f1d47..00754770 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,10 +3,28 @@ All notable changes to this project will be documented in this file.
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
-## [v10.0.0.rc1] - eSignature API v2.1-26.2.00.00 - 2026-06-01
-### Changed
-- Added support for version v2.1-26.2.00.00 of the DocuSign ESignature API.
-- Updated the SDK release version.
+## [v7.0.0.rc1] - eSignature API v2.1-26.2.00.00 - 2026-06-03
+### Breaking Changes
+- Groups API: ListGroupUsers, ListGroupUsersAsync, and their WithHttpInfo variants now return GroupUsersResponse
+ instead of UsersResponse. Update any code that depends on the previous return type.
+
+### Added
+- Envelopes API: New envelope sharing methods:
+ - UpdateEnvelopesShares / DeleteEnvelopesShares — bulk update or delete shares on an envelope.
+ - UpdateEnvelopesShare / DeleteEnvelopesShare — update or delete a single envelope share by shareId.
+ - GetSharedEnvelopes — retrieve a filtered list of shared envelopes.
+ - Models: AdditionalSetting, BulkSendingCopyPrefillTab, EnvelopesSharePermissionRequest, EnvelopesShareRequest,
+ EnvelopesShareResponse, EnvelopesSharesRequest, EnvelopesSharesResponse, GroupUserInfo, GroupUsersResponse.
+ - BulkSendingCopy: Added PrefillTabs property to support pre-populating tab values per bulk send copy.
+ - AccountSettingsInformation: Added AdditionalSettings, AiAssistedWebFormCreationLevel, EnableIAMforXEmbeddedUX, and
+ EnableReviewerEventsSetting properties (each with corresponding metadata).
+
+### Changed
+
+- Added AnchorTabScope property to all tab model types (Approve, Checkbox, Company, Date, Email, FormulaTab, List,
+ Number, Radio, Ssn, Text, Zip, and others).
+ - Added support for version v2.1-26.2.00.00 of the DocuSign eSignature API.
+ - Updated the SDK release version to 7.0.0.rc1
## [v6.0.0] - eSignature API v2.1-26.1.02.00 - 2026-05-04
### Removed
diff --git a/README.md b/README.md
index fe069418..3f2bef2a 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,7 @@ This client SDK is provided as open source, which enables you to customize its f
### Version Information
- **API version**: v2.1
-- **Latest SDK version**: 10.0.0.rc1
+- **Latest SDK version**: 7.0.0.rc1
## Requirements
diff --git a/lib/docusign_esign/client/api_client.rb b/lib/docusign_esign/client/api_client.rb
index 9b7550f8..c700fc4a 100644
--- a/lib/docusign_esign/client/api_client.rb
+++ b/lib/docusign_esign/client/api_client.rb
@@ -35,7 +35,7 @@ class ApiClient
# @option config [Configuration] Configuration for initializing the object, default to Configuration.default
def initialize(config = Configuration.default)
@config = config
- @user_agent = "Swagger-Codegen/v2.1/10.0.0.rc1/ruby-#{RUBY_VERSION}p#{RUBY_PATCHLEVEL}"
+ @user_agent = "Swagger-Codegen/v2.1/7.0.0.rc1/ruby-#{RUBY_VERSION}p#{RUBY_PATCHLEVEL}"
@default_headers = {
'Content-Type' => "application/json",
'User-Agent' => @user_agent
diff --git a/lib/docusign_esign/version.rb b/lib/docusign_esign/version.rb
index 802d889e..3e4f2f28 100644
--- a/lib/docusign_esign/version.rb
+++ b/lib/docusign_esign/version.rb
@@ -10,5 +10,5 @@
=end
module DocuSign_eSign
- VERSION = '10.0.0.rc1'
+ VERSION = '7.0.0.rc1'
end