Skip to content

Commit 7d21559

Browse files
committed
chore: bump version to v1.0.0
- Update version in pyproject.toml - Update version in morphml/version.py - Add v1.0.0 release notes to CHANGELOG.md - Mark as first stable production release
1 parent 467bba9 commit 7d21559

3 files changed

Lines changed: 47 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,51 @@ All notable changes to MorphML will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.0] - 2024-11-11
9+
10+
### 🎉 First Stable Release
11+
12+
MorphML v1.0.0 marks the first production-ready release with complete ecosystem features.
13+
14+
### Added
15+
16+
#### Complete Ecosystem (Phase 5)
17+
- Web dashboard with real-time monitoring (React + FastAPI)
18+
- REST API with JWT authentication and rate limiting
19+
- Framework integrations (PyTorch, TensorFlow, JAX, Scikit-learn)
20+
- Interactive Plotly dashboards for visualization
21+
- Professional architecture diagram generator with Graphviz
22+
- Performance analytics and statistical analysis
23+
- Extensible plugin system
24+
- Enhanced CLI with interactive commands
25+
- Python API client library
26+
- Complete documentation site with MkDocs Material
27+
28+
#### Production Features
29+
- Automatic shape inference for all frameworks
30+
- GPU acceleration support
31+
- Multiple installation options with extras
32+
- Comprehensive error handling
33+
- Type hints throughout codebase
34+
- PyPI publishing configuration
35+
36+
### Changed
37+
- Updated authors information (Vedanth & Eshan Roy)
38+
- Improved documentation structure
39+
- Enhanced code organization
40+
41+
### Infrastructure
42+
- Added publish.sh for automated PyPI publishing
43+
- Added MANIFEST.in for package data
44+
- Added setup.py for backwards compatibility
45+
- Complete PyPI metadata in pyproject.toml
46+
47+
---
48+
849
## [0.1.0] - 2024-11-11
950

51+
### Initial Beta Release
52+
1053
### Added
1154

1255
#### Core Features (Phase 1)

morphml/version.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Version information for MorphML."""
22

3-
__version__ = "0.1.0"
4-
__author__ = "Eshan Roy"
5-
__email__ = "eshanized@proton.me"
3+
__version__ = "1.0.0"
4+
__author__ = "Vedanth & Eshan Roy"
5+
__email__ = "vedanth@vedanthq.com, eshanized@proton.me"
66
__organization__ = "TONMOY INFRASTRUCTURE & VISION"
77
__repository__ = "https://github.com/TIVerse/MorphML"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "morphml"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
description = "Production-grade Neural Architecture Search framework with distributed optimization and meta-learning"
55
authors = [
66
"Vedanth <vedanth@vedanthq.com>",

0 commit comments

Comments
 (0)