Skip to content

Commit 55ef6a7

Browse files
authored
Add README badges and cut [0.1.0] changelog section (#15)
- Add a four-badge strip to the top of the README: PyPI version, supported Python versions, CI status, license. First thing a landing visitor sees. - Cut [Unreleased] into a dated [0.1.0] section matching what actually went out on PyPI today, leaving [Unreleased] empty aside from the new badge line.
1 parent 279f5b8 commit 55ef6a7

2 files changed

Lines changed: 13 additions & 4 deletions

File tree

‎CHANGELOG.md‎

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ the set of symbols exported from `devol.__all__`; anything else is internal.
1212

1313
### Added
1414

15+
- README badges: PyPI version, supported Python versions, CI status, license.
16+
17+
## [0.1.0] - 2026-05-03
18+
19+
First published release to PyPI.
20+
21+
### Added
22+
1523
- Project metadata for PyPI publication (license, authors, classifiers, URLs).
1624
- `LICENSE` file (MIT).
1725
- `py.typed` marker so downstream type checkers pick up `devol`'s inline hints.
@@ -36,7 +44,3 @@ the set of symbols exported from `devol.__all__`; anything else is internal.
3644
### Fixed
3745

3846
- `DiffusionEvolution.run()` no longer requires `initial_population`; calling `algo.run()` now initializes a population automatically, matching the documented Quick Start usage and unblocking the `devol` CLI entry point.
39-
40-
## [0.1.0]
41-
42-
Initial development version. Not yet released to PyPI.

‎README.md‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Devol
22

3+
[![PyPI version](https://img.shields.io/pypi/v/devol.svg)](https://pypi.org/project/devol/)
4+
[![Python versions](https://img.shields.io/pypi/pyversions/devol.svg)](https://pypi.org/project/devol/)
5+
[![CI](https://github.com/LabStrangeLoop/devol/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/LabStrangeLoop/devol/actions/workflows/ci.yml)
6+
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/LabStrangeLoop/devol/blob/main/LICENSE)
7+
38
**Diffusion Evolution** - What if evolution worked like image generation?
49

510
## What Is This?

0 commit comments

Comments
 (0)