Skip to content

Commit

Permalink
Fix missing oblate.fields package in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
izxxr committed Feb 14, 2024
1 parent 14ac3c3 commit aa63e1e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ Changelog

This page has changelogs for all releases of Oblate.

v1.2.1
------

- Fix missing `oblate.fields` package during installation of v1.2.0.

v1.2.0
------

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
project = 'Oblate'
copyright = '2023, Izhar Ahmad (izxxr)'
author = 'Izhar Ahmad (izxxr)'
release = '1.2.0'
release = '1.2.1'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion oblate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
See LICENSE at project's root for more information.
"""

__version__ = '1.2.0'
__version__ = '1.2.1'
__author__ = 'Izhar Ahmad (izxxr)'

from oblate import fields as fields
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from setuptools import setup

VERSION = "1.2.0"
VERSION = "1.2.1"
GITHUB = "https://github.com/izxxr/oblate"
DOCUMENTATION = "https://oblate.readthedocs.io"
LICENSE = "MIT"
PACKAGES = ["oblate"]
PACKAGES = ["oblate", "oblate.fields"]

with open("README.MD", "r", encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
Expand Down

0 comments on commit aa63e1e

Please sign in to comment.