diff --git a/CHANGELOG.md b/CHANGELOG.md index f68c63958..d2672e193 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.6.5-dev0 + +### Enhancements + +* PLACEHOLDER - delete this line when there is an actual changelog item to report for 0.6.5 + +### Features + +### Fixes + ## 0.6.4 ### Enhancements diff --git a/Makefile b/Makefile index 25189cf93..3b1540e87 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,8 @@ PACKAGE_NAME := unstructured -PIP_VERSION := 22.2.1 +PIP_VERSION := 23.1.2 CURRENT_DIR := $(shell pwd) ARCH := $(shell uname -m) - .PHONY: help help: Makefile @sed -n 's/^\(## \)\([a-zA-Z]\)/\2/p' $< diff --git a/scripts/docker-build.sh b/scripts/docker-build.sh index b21dfb21a..f00c30be1 100755 --- a/scripts/docker-build.sh +++ b/scripts/docker-build.sh @@ -2,7 +2,7 @@ set -euo pipefail DOCKER_REPOSITORY="${DOCKER_REPOSITORY:-quay.io/unstructured-io/unstructured}" -PIP_VERSION="${PIP_VERSION:-22.2.1}" +PIP_VERSION="${PIP_VERSION:-23.1.2}" DOCKER_IMAGE="${DOCKER_IMAGE:-unstructured:dev}" DOCKER_BUILD_CMD=(docker buildx build --load -f Dockerfile \ diff --git a/unstructured/__version__.py b/unstructured/__version__.py index 4bf914ad4..530da768d 100644 --- a/unstructured/__version__.py +++ b/unstructured/__version__.py @@ -1 +1 @@ -__version__ = "0.6.4" # pragma: no cover +__version__ = "0.6.5-dev0" # pragma: no cover