Skip to content

Commit 1b0507c

Browse files
authored
Merge pull request #639 from basetenlabs/bump-version-0.7.0
Release 0.7.0
2 parents 07914ea + d9ae02c commit 1b0507c

File tree

101 files changed

+646
-7177
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+646
-7177
lines changed

.gitbook.yaml

-16
This file was deleted.

.github/workflows/commit_new_release_to_main.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Merge release into main
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches:
67
- release
@@ -20,12 +21,13 @@ jobs:
2021
2122
- name: Fetch all branches
2223
run: |
23-
git fetch --all
24+
git fetch --all --unshallow
25+
git pull origin release
2426
2527
- name: Merge release into main with priority on main changes
2628
run: |
2729
git checkout main
28-
git merge --strategy-option=ours origin/release -m "Merge release into main prioritizing main changes"
30+
git merge --strategy-option=ours release -m "Merge release into main prioritizing main changes"
2931
git push origin main
3032
env:
3133
GH_TOKEN: ${{ secrets.BASETENBOT_GITHUB_TOKEN }}

.github/workflows/create_release_pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Make PR
4646
run: |
4747
CURR_VERSION=$(curl https://pypi.org/pypi/truss/json | jq ".info.version")
48-
PR_BODY="Updating Truss from [$CURR_VERSION](https://pypi.org/pypi/truss/json) to $INPUT_VERSION."
48+
PR_BODY="Updating Truss from [$CURR_VERSION](https://pypi.org/pypi/truss/json) to $INPUT_VERSION. **PLEASE ENSURE YOU MERGE, NOT SQUASH**"
4949
PR_URL=$(gh pr create --base release --head refs/heads/bump-version-$INPUT_VERSION --title "Release $INPUT_VERSION" --body "$PR_BODY")
5050
env:
5151
INPUT_VERSION: ${{ github.event.inputs.version }}

.github/workflows/pr.yml

-6
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@ name: PR
22

33
on:
44
pull_request:
5-
paths:
6-
- poetry.lock
7-
- pyproject.yaml
8-
- "truss/**"
9-
- "docs/**"
10-
- .github/workflows/pr.yml
115

126
concurrency:
137
group: pr-${{ github.ref_name }}

docs/examples/pre-process.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ predict. So -- let's say you have a model that can handle 5 concurrent requests:
4242
```config.yaml
4343
...
4444
runtime:
45-
predict_concurrency: 10
45+
predict_concurrency: 5
4646
...
4747
```
4848

old_docs/CHANGELOG.md

-94
This file was deleted.

old_docs/SUMMARY.md

-33
This file was deleted.
-24.7 KB
Binary file not shown.

old_docs/assets/truss_unify.png

-212 KB
Binary file not shown.

old_docs/deploy/baseten.md

-63
This file was deleted.

old_docs/deploy/sagemaker.md

-7
This file was deleted.

0 commit comments

Comments
 (0)