Skip to content

Commit

Permalink
to 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
strint committed Apr 13, 2024
1 parent 661852b commit 921df3b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
sed -i '1d' "src/onediff/__init__.py"
sed -i '1d' "onediff_diffusers_extensions/onediffx/__init__.py"
formatted_date=$(date +'%Y%m%d%H%M')
echo "__version__ = \"0.13.0.dev${formatted_date}\"" >> src/onediff/__init__.py
echo "__version__ = \"0.13.0.dev${formatted_date}\"" >> onediff_diffusers_extensions/onediffx/__init__.py
echo "__version__ = \"1.0.0.dev${formatted_date}\"" >> src/onediff/__init__.py
echo "__version__ = \"1.0.0.dev${formatted_date}\"" >> onediff_diffusers_extensions/onediffx/__init__.py
- run: cat src/onediff/__init__.py
- run: python3 -m pip install build
- run: python3 -m build
Expand Down
2 changes: 1 addition & 1 deletion onediff_diffusers_extensions/onediffx/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.13.0.dev"
__version__ = "1.0.0.dev"
from onediff.infer_compiler.oneflow import oneflow_compiler_config as compiler_config
from .compilers.diffusion_pipeline_compiler import compile_pipe, save_pipe, load_pipe

Expand Down
2 changes: 1 addition & 1 deletion src/onediff/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.13.0.dev1"
__version__ = "1.0.0.dev1"
__author__ = "OneDiff"
__credits__ = "OneDiff contributors"

0 comments on commit 921df3b

Please sign in to comment.