Skip to content

Commit

Permalink
1.0.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianinsaval committed Nov 18, 2024
1 parent 77aaa9a commit 8a43fef
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ linux_task:
env:
DEBIAN_FRONTEND: noninteractive
ASSET_PATTERN: FreeCAD_.*Linux-aarch64
DEPLOY_RELEASE: 1.0rc4
DEPLOY_RELEASE: 1.0.0
TARGET_REPO: $CIRRUS_REPO_FULL_NAME

# Instructions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/freecad_bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, macos-13, ubuntu-latest]
tag: ["1.0rc4"]
tag: ["1.0.0"]
include:
- os: windows-latest
bundle_dir: conda/win
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/source_creation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
tag: ["1.0rc4"]
branch: ["1.0rc4"]
tag: ["1.0.0"]
branch: ["1.0.0"]

steps:
- name: create source package with submodules and version info
Expand Down
6 changes: 3 additions & 3 deletions conda/linux/create_bundle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ conda_env="AppDir/usr"
echo -e "\nCreate the environment"

mamba create --copy -y -p ${conda_env} \
-c freecad/label/dev \
-c freecad \
-c conda-forge \
freecad=1.0rc4 \
freecad=1.0.0 \
python=3.11 \
noqt6 \
appimage-updater-bridge \
Expand Down Expand Up @@ -95,7 +95,7 @@ find . -name "*.cmake" -type f -delete
if [ "$DEPLOY_RELEASE" = "weekly-builds" ]; then
export tag="weekly-builds"
else
export tag="1.0rc4" # TODO: revert for actual release to "latest"
export tag="latest"
fi

echo -e "\nCreate the appimage"
Expand Down
4 changes: 2 additions & 2 deletions conda/osx/create_bundle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
export MAMBA_NO_BANNER=1
conda_env="APP/FreeCAD.app/Contents/Resources"

mamba create -y --copy -c freecad/label/dev -c conda-forge -p ${conda_env} \
mamba create -y --copy -c freecad -c conda-forge -p ${conda_env} \
python=3.11 \
freecad=1.0rc4 \
freecad=1.0.0 \
noqt6 \
blas=*=openblas \
blinker \
Expand Down
4 changes: 2 additions & 2 deletions conda/win/create_bundle.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mkdir %copy_dir%

call mamba create ^
-p %conda_env% ^
freecad=1.0rc4 ^
freecad=1.0.0 ^
python=3.11 ^
noqt6 ^
blinker ^
Expand All @@ -31,7 +31,7 @@ call mamba create ^
vtk ^
xlutils ^
--copy ^
-c freecad/label/dev ^
-c freecad ^
-c conda-forge ^
-y

Expand Down

0 comments on commit 8a43fef

Please sign in to comment.