Skip to content

Commit 1594281

Browse files
committed
update
1 parent 39dce8c commit 1594281

File tree

5 files changed

+61
-16
lines changed

5 files changed

+61
-16
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Simple workflow for deploying static content to GitHub Pages
2+
name: Deploy docs to Pages
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["main"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20+
concurrency:
21+
group: "pages"
22+
cancel-in-progress: false
23+
24+
jobs:
25+
# Single deploy job since we're just deploying
26+
deploy:
27+
environment:
28+
name: github-pages
29+
url: ${{ steps.deployment.outputs.page_url }}
30+
runs-on: ubuntu-latest
31+
steps:
32+
- name: Checkout
33+
uses: actions/checkout@v4
34+
- name: Setup Pages
35+
uses: actions/configure-pages@v5
36+
- name: Upload artifact
37+
uses: actions/upload-pages-artifact@v3
38+
with:
39+
path: './docs/build/html'
40+
- name: Deploy to GitHub Pages
41+
id: deployment
42+
uses: actions/deploy-pages@v4

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [2.0.1] - 2025-08-19
6+
- Minor fixes
7+
8+
## [2.0.1] - 2025-05-15
9+
- Minor fixes
10+
11+
## [2.0.0] - 2025-05-15
12+
### Added
13+
- Brand-new implementation
14+
15+
## [1.2.0] - 2011-01-19
16+
### Added
17+
- Legacy Implementation

LICENSE

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
BSD 3-Clause License
22

3-
* PureMVC MultiCore Framework for Python - Copyright © 2025 Saad Shams
4-
* PureMVC - Copyright © 2025 Futurescale, Inc.
5-
* All rights reserved.
3+
Copyright (c) 2025, Saad Shams, Futurescale, Inc.
64

75
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
86

VERSION

Lines changed: 0 additions & 12 deletions
This file was deleted.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "PureMVC"
7-
version = "2.0.1"
7+
version = "2.0.2"
88
requires-python = ">=3.8"
99
authors = [{ name = "Saad Shams", email = "[email protected]" }]
1010
description = "PureMVC Multicore Framework"

0 commit comments

Comments
 (0)