Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: trying again #42

Merged
merged 1 commit into from
Sep 8, 2024
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 .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

- name: Semantic release
run: |
poetry run semantic-release version
poetry run semantic-release version –no-changelog
poetry run semantic-release publish
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
361 changes: 0 additions & 361 deletions CHANGELOG.md

This file was deleted.

8 changes: 3 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,11 @@ exclude = [
]

[tool.semantic_release]
version_variable = [
"pyview/__init__.py:__version__",
"pyproject.toml:version"
version_toml = [
"pyproject.toml:version",
]

upload_to_pypi = false
upload_to_vcs_release = false
upload_to_vcs_release = true
build_command = "poetry build"

[tool.semantic_release.branches.main]
Expand Down
2 changes: 0 additions & 2 deletions pyview/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
from pyview.js import js
from pyview.pyview import RootTemplateContext, RootTemplate

__version__ = "0.0.22"

__all__ = [
"LiveView",
"LiveViewSocket",
Expand Down
Loading