-
Notifications
You must be signed in to change notification settings - Fork 0
Register v0.1.0 on Zenodo with DOI 10.5281/zenodo.19161241 #24
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,36 +1,15 @@ | ||
| { | ||
| "title": "universums-sim: Complete Cosmic Emergence Simulation for GenesisAeon", | ||
| "description": "universums-sim provides a complete PyPI package for cosmic emergence simulation with self-reflective observation and live visualization. Includes an extended Unified Lagrangian for N-body + field-theory dynamics, a symplectic leapfrog integrator, emergence event engine, entropy governance, live mandala visualization, 3D particle rendering, sonification, and a Dash GUI.", | ||
| "title": "GenesisAeon/universums-sim: v0.1.0 – Full cosmic emergence simulation with Unified Lagrangian, live Mandala + Dash GUI", | ||
| "version": "0.1.0", | ||
| "doi": "10.5281/zenodo.19161241", | ||
| "creators": [ | ||
| { | ||
| "name": "GenesisAeon", | ||
| "affiliation": "GenesisAeon Research", | ||
| "orcid": "" | ||
| "name": "GenesisAeon Project" | ||
| } | ||
| ], | ||
| "description": "Complete discrete cosmic emergence simulator: UniverseSimulator with symplectic integration, Unified Lagrangian L = T + V_grav + V_scalar + V_entropy + V_topo, real-time EmergenceEngine, EntropyGovernor and live MandalaRenderer + Dash GUI for the GenesisAeon stack.", | ||
| "keywords": ["UniversumsSim", "cosmic-emergence", "Unified-Lagrangian", "CosmicMoment", "EmergenceEngine", "Dash-GUI", "GenesisAeon"], | ||
| "license": "MIT", | ||
| "version": "0.1.0", | ||
| "upload_type": "software", | ||
| "access_right": "open", | ||
| "keywords": [ | ||
| "cosmology", | ||
| "simulation", | ||
| "emergence", | ||
| "quantum field theory", | ||
| "lagrangian mechanics", | ||
| "entropy", | ||
| "visualization", | ||
| "mandala", | ||
| "python", | ||
| "GenesisAeon" | ||
| ], | ||
| "related_identifiers": [ | ||
| { | ||
| "identifier": "https://github.com/GenesisAeon/universums-sim", | ||
| "relation": "isSupplementTo", | ||
| "scheme": "url" | ||
| } | ||
| ], | ||
| "language": "eng", | ||
| "notes": "Built with the diamond-setup --template genesis pattern. Integrates genesis-os, aeon-ai, cosmic-web, fieldtheory, mirror-machine, advanced-weighting-systems, sigillin, entropy-governance, utac-core, mandala-visualizer, sonification, climate-dashboard, implosive-genesis, and entropy-table as optional [full-stack] dependencies." | ||
| "access_right": "open" | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,7 +7,7 @@ | |
| <p align="center"> | ||
| <a href="https://pypi.org/project/universums-sim/"><img src="https://img.shields.io/pypi/v/universums-sim.svg" alt="PyPI"></a> | ||
| <a href="https://pypi.org/project/universums-sim/"><img src="https://img.shields.io/pypi/pyversions/universums-sim.svg" alt="Python"></a> | ||
| <a href="https://doi.org/10.5281/zenodo.PLACEHOLDER"><img src="https://zenodo.org/badge/DOI/10.5281/zenodo.PLACEHOLDER.svg" alt="DOI"></a> | ||
| <a href="https://doi.org/10.5281/zenodo.19161241"><img src="https://zenodo.org/badge/DOI/10.5281/zenodo.19161241.svg" alt="DOI"></a> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This README change advertises Useful? React with 👍 / 👎. |
||
| <a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-green.svg" alt="License"></a> | ||
| <a href="https://github.com/GenesisAeon/universums-sim/actions"><img src="https://github.com/GenesisAeon/universums-sim/workflows/CI/badge.svg" alt="CI"></a> | ||
| </p> | ||
|
|
@@ -212,8 +212,8 @@ mkdocs serve | |
| year = 2024, | ||
| publisher = {Zenodo}, | ||
| version = {0.1.0}, | ||
| doi = {10.5281/zenodo.PLACEHOLDER}, | ||
| url = {https://doi.org/10.5281/zenodo.PLACEHOLDER} | ||
| doi = {10.5281/zenodo.19161241}, | ||
| url = {https://doi.org/10.5281/zenodo.19161241} | ||
| } | ||
| ``` | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.zenodo.jsonis reused for every GitHub-triggered Zenodo archive, so hardcoding the v0.1.0 DOI here will break the next tagged release. Whenv0.1.1or later is archived, Zenodo will be asked to create a new deposition whose metadata already claims DOI10.5281/zenodo.19161241, which is the existing identifier for this version; that field is only meant for pre-existing externally assigned DOIs. In practice this causes future Zenodo publishing to fail or attach the wrong DOI to later releases.Useful? React with 👍 / 👎.