Skip to content
Merged
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
2 changes: 1 addition & 1 deletion apps/vscode-ext/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "superdoc-vscode-ext",
"displayName": "SuperDoc - Word Document Editor",
"description": "Open and edit Word documents (.docx) directly in VS Code using SuperDoc",
"version": "2.1.3",
"version": "2.2.0",
"publisher": "superdoc-dev",
"icon": "logo.png",
"homepage": "https://superdoc.dev",
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/langs/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@superdoc-dev/sdk",
"version": "1.2.0",
"version": "1.3.0",
"private": false,
"type": "module",
"main": "./dist/index.cjs",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@superdoc-dev/sdk-darwin-arm64",
"version": "1.2.0",
"version": "1.3.0",
"os": [
"darwin"
],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@superdoc-dev/sdk-darwin-x64",
"version": "1.2.0",
"version": "1.3.0",
"os": [
"darwin"
],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@superdoc-dev/sdk-linux-arm64",
"version": "1.2.0",
"version": "1.3.0",
"os": [
"linux"
],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@superdoc-dev/sdk-linux-x64",
"version": "1.2.0",
"version": "1.3.0",
"os": [
"linux"
],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@superdoc-dev/sdk-windows-x64",
"version": "1.2.0",
"version": "1.3.0",
"os": [
"win32"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "superdoc-sdk-cli-darwin-arm64"
version = "1.2.0"
version = "1.3.0"
description = "SuperDoc CLI binary for macOS ARM64 (Apple Silicon)"
readme = "README.md"
requires-python = ">=3.9"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "superdoc-sdk-cli-darwin-x64"
version = "1.2.0"
version = "1.3.0"
description = "SuperDoc CLI binary for macOS x64 (Intel)"
readme = "README.md"
requires-python = ">=3.9"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "superdoc-sdk-cli-linux-arm64"
version = "1.2.0"
version = "1.3.0"
description = "SuperDoc CLI binary for Linux ARM64"
readme = "README.md"
requires-python = ">=3.9"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "superdoc-sdk-cli-linux-x64"
version = "1.2.0"
version = "1.3.0"
description = "SuperDoc CLI binary for Linux x64"
readme = "README.md"
requires-python = ">=3.9"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "superdoc-sdk-cli-windows-x64"
version = "1.2.0"
version = "1.3.0"
description = "SuperDoc CLI binary for Windows x64"
readme = "README.md"
requires-python = ">=3.9"
Expand Down
12 changes: 6 additions & 6 deletions packages/sdk/langs/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ build-backend = "setuptools.build_meta"

[project]
name = "superdoc-sdk"
version = "1.2.0"
version = "1.3.0"
description = "SuperDoc SDK (CLI-backed)"
readme = "README.md"
requires-python = ">=3.9"
license = "AGPL-3.0"
authors = [{ name = "SuperDoc" }]
dependencies = [
"superdoc-sdk-cli-darwin-arm64==1.2.0; platform_system == 'Darwin' and (platform_machine == 'arm64' or platform_machine == 'aarch64' or platform_machine == 'ARM64')",
"superdoc-sdk-cli-darwin-x64==1.2.0; platform_system == 'Darwin' and (platform_machine == 'x86_64' or platform_machine == 'AMD64' or platform_machine == 'amd64')",
"superdoc-sdk-cli-linux-x64==1.2.0; platform_system == 'Linux' and (platform_machine == 'x86_64' or platform_machine == 'AMD64' or platform_machine == 'amd64')",
"superdoc-sdk-cli-linux-arm64==1.2.0; platform_system == 'Linux' and (platform_machine == 'arm64' or platform_machine == 'aarch64' or platform_machine == 'ARM64')",
"superdoc-sdk-cli-windows-x64==1.2.0; platform_system == 'Windows' and (platform_machine == 'x86_64' or platform_machine == 'AMD64' or platform_machine == 'amd64')",
"superdoc-sdk-cli-darwin-arm64==1.3.0; platform_system == 'Darwin' and (platform_machine == 'arm64' or platform_machine == 'aarch64' or platform_machine == 'ARM64')",
"superdoc-sdk-cli-darwin-x64==1.3.0; platform_system == 'Darwin' and (platform_machine == 'x86_64' or platform_machine == 'AMD64' or platform_machine == 'amd64')",
"superdoc-sdk-cli-linux-x64==1.3.0; platform_system == 'Linux' and (platform_machine == 'x86_64' or platform_machine == 'AMD64' or platform_machine == 'amd64')",
"superdoc-sdk-cli-linux-arm64==1.3.0; platform_system == 'Linux' and (platform_machine == 'arm64' or platform_machine == 'aarch64' or platform_machine == 'ARM64')",
"superdoc-sdk-cli-windows-x64==1.3.0; platform_system == 'Windows' and (platform_machine == 'x86_64' or platform_machine == 'AMD64' or platform_machine == 'amd64')",
]

[tool.setuptools]
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@superdoc-dev/sdk-workspace",
"version": "1.2.0",
"version": "1.3.0",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"sdkVersion": "1.2.0"
"sdkVersion": "1.3.0"
}
Loading