Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Oct 10, 2024
1 parent 8f6ca90 commit 0680512
Show file tree
Hide file tree
Showing 9 changed files with 396 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Change log

## 1.0a2

- WIP

## 1.0.a1 (2024-10-10)

- initial release
18 changes: 18 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Contributor Guidelines

Be human, behave!

# Development

Create a branch, either in this repo or as a fork, and then create a Pull Request.

# Releases

Are done with the Github release feature.

- Create a draft,
- edit version numbers in pyproject.toml and CHANGES.rst and push them,
- publish the release,
- Publishing to PyPI
Check the Github Actions!
- Bump version numbers in above files with `.dev0` postfixed and push, so the repo is back in development mode.
4 changes: 4 additions & 0 deletions CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Contributors
============

- Jens W. Klein, jk@kleinundpartner.at - Maintainer
339 changes: 339 additions & 0 deletions LICENSE.GPL

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
collective.elastic.plone Copyright 2024, Jens W. Klein

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License version 2
as published by the Free Software Foundation.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston,
MA 02111-1307 USA.
6 changes: 6 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
graft src/collective
graft examples
include *.rst
include *.md
exclude container/*
global-exclude *.pyc
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ This Plone add-on provides a `/metrics` endpoint on Plone site root.

It provides metrics of the ZODB and Plone.

## WIP, Features

Info:
- [x] Zope version
- [x] Python version
Expand Down
2 changes: 2 additions & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[mypy]
packages=bda.plone.prometheusexporter
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "bda.plone.prometheusexporter"
version = "1.0a1"
version = "1.0a2.dev0"
description = "Prometheus Exporter for Plone and Zope"
keywords = ["prometheus", "plone"]
readme = "README.md"
Expand Down

0 comments on commit 0680512

Please sign in to comment.