معرفی شرکت ها


changelogd-0.1.8


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Changelogs without conflicts.
ویژگی مقدار
سیستم عامل -
نام فایل changelogd-0.1.8
نام changelogd
نسخه کتابخانه 0.1.8
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Andrzej Klajnert
ایمیل نویسنده python@aklajnert.pl
آدرس صفحه اصلی https://github.com/aklajnert/changelogd
آدرس اینترنتی https://pypi.org/project/changelogd/
مجوز MIT license
changelogd ========== .. image:: https://img.shields.io/pypi/v/changelogd.svg :target: https://pypi.python.org/pypi/changelogd .. image:: https://dev.azure.com/aklajnert/changelogd/_apis/build/status/aklajnert.changelogd?branchName=master Changelogs without conflicts. * Free software: MIT license * Documentation: https://changelogd.readthedocs.io. Overview -------- Changelogd allows teams to avoid merge conflicts for the changelog files. The ``changelogd`` content is stored within multiple YAML files - one per each changelog entry. Then, during application release, all input files are combined into one release file. The script uses Jinja2 templates to generate one consistent text file out of all input YAML files. The default output format is Markdown, but by modifying the templates it can be changed into any text format you like. Installation ------------ You can install ``changelogd`` via `pip`_ from `PyPI`_:: $ pip install changelogd Quickstart ---------- First, initialize ``changelogd`` configuration. .. code-block:: bash $ changelogd init Created main configuration file: changelog.d\config.yaml Copied templates to changelog.d\templates Then, create changelog entries: .. code-block:: bash $ changelogd entry [1]: Features [feature] [2]: Bug fixes [bug] [3]: Documentation changes [doc] [4]: Deprecations [deprecation] [5]: Other changes [other] > Select message type [1]: 2 > Issue ID: 100 > Changelog message: Changelog message Created changelog entry at changelog.d\bug.a3f13823.entry.yaml Finally, generate changelog file. .. code-block:: bash $ changelogd release version-number > Release description (hit ENTER to omit): This is the initial release. Saved new release data into changelog.d\releases\0.release-name.yaml Generated changelog file to changelog.md Output file: .. code-block:: md # Changelog ## version-number (2020-01-11) This is the initial release. ### Bug fixes * [#100](http://repo/issues/100): Changelog message ([@user](user@example.com)) Documentation ------------- For full documentation, please see https://changelogd.readthedocs.io/en/latest/. License ------- Distributed under the terms of the `MIT`_ license, "changelogd" is free and open source software Issues ------ If you encounter any problems, please `file an issue`_ along with a detailed description. .. _`MIT`: http://opensource.org/licenses/MIT .. _`file an issue`: https://github.com/aklajnert/changelogd/issues .. _`pip`: https://pypi.org/project/pip/ .. _`PyPI`: https://pypi.org/project History ======= 0.1.8 (2023-02-24) ------------------ Features ~~~~~~~~ * `#37 <https://github.com/aklajnert/changelogd/pull/37>`_: Allow to set default values for entries. * `#36 <https://github.com/aklajnert/changelogd/pull/36>`_: Allow to add entry to the existing release. 0.1.7 (2022-10-10) ------------------ Minor improvements ~~~~~~~~~~~~~~~~~~ * `#26 <https://github.com/aklajnert/changelogd/pull/26>`_: Trim whitespace from multi-value fields. Other changes ~~~~~~~~~~~~~ * `#25 <https://github.com/aklajnert/changelogd/pull/25>`_: Switch to GitHub Actions. 0.1.6 (2022-09-06) ------------------ Features ~~~~~~~~ * `#21 <https://github.com/aklajnert/changelogd/pull/21>`_: Add support for computed values. Minor improvements ~~~~~~~~~~~~~~~~~~ * `#7 <https://github.com/aklajnert/changelogd/pull/7>`_: Add a readme file that will be put into the changelogd config directory. Other changes ~~~~~~~~~~~~~ * `#19 <https://github.com/aklajnert/changelogd/pull/19>`_: Remove invalid pytest option. * `#18 <https://github.com/aklajnert/changelogd/pull/18>`_: Add support for python 3.9 and 3.10, fix tests. 0.1.5 (2020-01-30) ------------------ Minor improvements ~~~~~~~~~~~~~~~~~~ * `#6 <https://github.com/aklajnert/changelogd/pull/6>`_: Add __main__.py file to allow invoking via `python -m changelogd`. 0.1.4 (2020-01-24) ------------------ Minor improvements ~~~~~~~~~~~~~~~~~~ * `#5 <https://github.com/aklajnert/changelogd/pull/5>`_: Save timestamp with entry YAML, so the order won't be affected by simple file modification. * `#4 <https://github.com/aklajnert/changelogd/pull/4>`_: Display entry title with `Select message type` question. 0.1.3 (2020-01-20) ------------------ Features ~~~~~~~~ * `#2 <https://github.com/aklajnert/changelogd/pull/2>`_: Allow to control which user data will be saved in entries. * `#3 <https://github.com/aklajnert/changelogd/pull/3>`_: Automatically add new entries and releases to git. Other changes ~~~~~~~~~~~~~ * `#1 <https://github.com/aklajnert/changelogd/pull/1>`_: Switch from ``tox`` to ``nox`` for running tests and tasks. 0.1.2 (2020-01-17) ------------------ Bug fixes ~~~~~~~~~ * Fixed missing templates from the ``MANIFEST.in`` 0.1.1 (2020-01-16) ------------------ Initial release


نیازمندی

مقدار نام
>=7.0 Click
>=2.10 Jinja2
>=0.9.4 toml
>=0.17.0 ruamel.yaml
==0.5.11 bump2version
==0.38.1 wheel
==3.7.9 flake8
==2019.11.9 nox
==0.740 mypy
- sphinx
>=5 pytest
==4.6.3 pyfakefs
- pytest-subprocess


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl changelogd-0.1.8:

    pip install changelogd-0.1.8.whl


نصب پکیج tar.gz changelogd-0.1.8:

    pip install changelogd-0.1.8.tar.gz