Bump version to 0.33.0
diff --git a/CHANGELOG b/CHANGELOG
index 467c491..98954d0 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,7 +2,7 @@
 # All notable changes to this project will be documented in this file.
 # This project adheres to [Semantic Versioning](http://semver.org/).
 
-## [0.40.0] UNRELEASED
+## [0.33.0] 2023-04-18
 ### Added
 - Add a new Python parser to generate logical lines.
 - Added support for `# fmt: on` and `# fmt: off` pragmas.
@@ -11,6 +11,7 @@
 - Add support for Python 3.10.
 - Format generated dicts with respect to same rules as regular dicts
 - Generalized the ending comma heuristic to subscripts.
+- Supports "pyproject.toml" by default.
 ### Fixed
 - Split line before all comparison operators.
 
diff --git a/setup.py b/setup.py
index ea170a7..61d8f99 100644
--- a/setup.py
+++ b/setup.py
@@ -78,7 +78,5 @@
       cmdclass={
           'test': RunTests,
       },
-      install_requires=[
-          'tomli>=2.0.1'
-      ],
+      install_requires=['tomli>=2.0.1'],
   )
diff --git a/yapf/__init__.py b/yapf/__init__.py
index 94e445b..2725e67 100644
--- a/yapf/__init__.py
+++ b/yapf/__init__.py
@@ -38,7 +38,7 @@
 from yapf.yapflib import style
 from yapf.yapflib import yapf_api
 
-__version__ = '0.32.0'
+__version__ = '0.33.0'
 
 
 def main(argv):