Skip to content

Commit

Permalink
KivyMD 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HeaTTheatR committed Aug 8, 2022
1 parent 7b12b63 commit 826aec0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
@@ -1,4 +1,4 @@
# KivyMD [0.104.2](https://kivymd.readthedocs.io/en/latest/changelog/index.html)
# KivyMD [1.0.0](https://kivymd.readthedocs.io/en/latest/changelog/index.html)

<img align="right" height="256" src="https://github.com/kivymd/internal/raw/main/logo/kivymd_logo_blue.png"/>

Expand Down Expand Up @@ -49,7 +49,7 @@ may be offered to you without asking too.
## Installation

```bash
pip install kivymd==0.104.2
pip install kivymd==1.0.0
```

### Dependencies:
Expand Down Expand Up @@ -89,7 +89,7 @@ to save time. If you need full commit history, then remove `--depth 1`.
### How to use with [Buildozer](https://github.com/kivy/buildozer)

```ini
requirements = kivy==2.1.0, kivymd==0.104.2, sdl2_ttf == 2.0.15, pillow
requirements = kivy==2.1.0, kivymd==1.0.0, sdl2_ttf == 2.0.15, pillow
```

This will download latest release version of KivyMD from [PyPI](https://pypi.org/project/kivymd).
Expand Down
@@ -1,11 +1,11 @@
Unreleased
----------
1.0.0
------

See on GitHub: `branch master <https://github.com/kivymd/KivyMD/tree/master>`_ | `compare 0.104.2/master <https://github.com/kivymd/KivyMD/compare/0.104.2...master>`_
See on GitHub: `tag 1.0.0 <https://github.com/kivymd/KivyMD/tree/1.0.0>`_ | `compare 0.104.2/1.0.0 <https://github.com/kivymd/KivyMD/compare/0.104.2...1.0.0>`_

.. code-block:: bash
pip install https://github.com/kivymd/KivyMD/archive/master.zip
pip install kivymd==1.0.0
* Bug fixes and other minor improvements.
* Added `ImageLeftWidgetWithoutTouch`, `ImageRightWidgetWithoutTouch`, `IconRightWidgetWithoutTouch`, `IconLeftWidgetWithoutTouch` classes to *kivymd/uix/list.py* module;
Expand Down
2 changes: 1 addition & 1 deletion docs/sources/changelog/index.rst
@@ -1,7 +1,7 @@
Changelog
=========

.. include:: /changelog/unreleased.rst
.. include:: /changelog/1.0.0.rst
.. include:: /changelog/0.104.2.rst
.. include:: /changelog/0.104.1.rst
.. include:: /changelog/0.104.0.rst
Expand Down
4 changes: 2 additions & 2 deletions kivymd/__init__.py
Expand Up @@ -33,10 +33,10 @@
import kivy
from kivy.logger import Logger

__version__ = "1.0.0.dev0"
__version__ = "1.0.0"
"""KivyMD version."""

release = False
release = True
kivy.require("2.0.0")

try:
Expand Down

0 comments on commit 826aec0

Please sign in to comment.