Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove V2 as V3 is now GA #84

Merged
merged 1 commit into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Create Release
uses: SneaksAndData/github-actions/[email protected]
with:
major_v: 1
minor_v: 1
major_v: 2
minor_v: 0
4 changes: 2 additions & 2 deletions esd_services_api_client/beast/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
# limitations under the License.
#

# This makes v2 the default import, so v3 users should import v3 directly - until v3 is in GA.
from esd_services_api_client.beast.v2 import *
# This makes v3 (GA version) the default import
from esd_services_api_client.beast.v3 import *
21 changes: 0 additions & 21 deletions esd_services_api_client/beast/v2/__init__.py

This file was deleted.

306 changes: 0 additions & 306 deletions esd_services_api_client/beast/v2/_connector.py

This file was deleted.

Loading