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
8 changes: 6 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name: Publish Packages
on:
push:
branches: [ main ]
paths:
- 'version.json'
workflow_dispatch:
inputs:
version:
description: 'Version to publish (leave empty to use version.json)'
required: false
type: string

jobs:
read-version:
Expand Down
5 changes: 3 additions & 2 deletions src/CSharp/DevPossible.Ton/DevPossible.Ton.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>DevPossible.Ton</PackageId>
<Version>0.1.4</Version>
<Version>0.1.5</Version>
<Authors>DevPossible, LLC</Authors>
<Company>DevPossible, LLC</Company>
<Product>DevPossible.Ton</Product>
Expand All @@ -27,7 +27,7 @@
<AssemblyCopyright>Copyright © 2024 DevPossible, LLC</AssemblyCopyright>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<PackageVersion>0.1.4</PackageVersion>
<PackageVersion>0.1.5</PackageVersion>

<!-- Contact Information -->
<PackageOwners>DevPossible, LLC</PackageOwners>
Expand All @@ -39,3 +39,4 @@
</ItemGroup>

</Project>

2 changes: 1 addition & 1 deletion src/JavaScript/devpossible-ton/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devpossible/ton",
"version": "0.1.4",
"version": "0.1.5",
"description": "JavaScript library for parsing, validating, and serializing TON (Text Object Notation) files. Full specification at https://tonspec.com. ALPHA RELEASE: Core functionality is complete but API may change before stable 1.0 release.",
"type": "module",
"main": "dist/index.js",
Expand Down
3 changes: 2 additions & 1 deletion src/Python/devpossible_ton/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="devpossible-ton",
version="0.1.4",
version="0.1.5",
author="DevPossible, LLC",
author_email="support@devpossible.com",
description="Python library for parsing, validating, and serializing TON (Text Object Notation) files. Full specification at https://tonspec.com. ALPHA RELEASE: Core functionality is complete but API may change before stable 1.0 release.",
Expand Down Expand Up @@ -64,3 +64,4 @@




2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"library_version": "0.1.4",
"library_version": "0.1.5",
"ton_spec_version": "1.0",
"description": "Centralized version file for all DevPossible.Ton packages. library_version is for the package, ton_spec_version is for the TON file format specification."
}