Skip to content
Open
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
16 changes: 2 additions & 14 deletions sdk/template/azure-template/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,11 @@

[comment]: # (Change log guidance: https://azure.github.io/azure-sdk/policies_releases.html#changelog-guidance)

## 0.0.18b3 (Unreleased)
## 1.0.0 (2026-09-03)

### Features Added

- Some feature

### Breaking Changes

- Some breaking change

### Bugs Fixed

- Some bug fix

### Other Changes

- Some other change
- GA release
Comment thread
tjprescott marked this conversation as resolved.

## 0.0.18b2 (2020-09-04)

Expand Down
12 changes: 0 additions & 12 deletions sdk/template/azure-template/api.md

This file was deleted.

3 changes: 0 additions & 3 deletions sdk/template/azure-template/api.metadata.yml

This file was deleted.

2 changes: 1 addition & 1 deletion sdk/template/azure-template/azure/template/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# license information.
# --------------------------------------------------------------------------
from ._version import VERSION
from .template_code import template_main
from ._template_code import template_main

__all__ = ["template_main"]
__version__ = VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

def template_main() -> bool:
print("Package code.")
return True
return True
2 changes: 1 addition & 1 deletion sdk/template/azure-template/azure/template/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# --------------------------------------------------------------------------

# matches SEMVER
VERSION = "0.0.18b3"
VERSION = "1.0.0"
Comment thread
tjprescott marked this conversation as resolved.
3 changes: 2 additions & 1 deletion sdk/template/azure-template/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ keywords = ["azure", "azure sdk"]
requires-python = ">=3.9"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
Expand Down Expand Up @@ -42,6 +42,7 @@ exclude = ["tests*", "samples*", "azure", "build*"]
pytyped = ["py.typed"]

[tool.azure-sdk-build]
is_stable = true
mypy = true
type_check_samples = true
verifytypes = true
Expand Down
Loading