Skip to content

Commit

Permalink
0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xinzhengzhang committed Jan 26, 2024
1 parent 759ac49 commit 9981dc3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module(
name = "bis",
version = "0.3.4",
version = "0.4.0",
)

bazel_dep(name = "rules_swift", version = "1.13.0", repo_name = "build_bazel_rules_swift")
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ Bazel rules and plugin for developing iOS project on vscode
# Bzlmod
```sh
# MODULE.bazel
bazel_dep(name = "bis", version = "0.3.4", dev_dependency = True)
bazel_dep(name = "bis", version = "0.4.0", dev_dependency = True)
archive_override(
module_name = "bis",
urls = "https://github.com/xinzhengzhang/bis/archive/refs/tags/0.3.4.tar.gz",
strip_prefix = "bis-0.3.4"
urls = "https://github.com/xinzhengzhang/bis/archive/refs/tags/0.4.0.tar.gz",
strip_prefix = "bis-0.4.0"
)
```
# Non-bzlmod
Expand All @@ -19,7 +19,7 @@ load('@bazel_tools//tools/build_defs/repo:git.bzl', 'git_repository')
git_repository(
name = "bis",
remote = "[email protected]:xinzhengzhang/bis.git",
tag = "0.3.4",
tag = "0.4.0",
)

load("@bis//:repositories.bzl", "bis_rules_dependencies")
Expand Down
2 changes: 1 addition & 1 deletion plugin/zxz-moe-bis/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]
### 0.4.0
*
* Switched to using [pymobiledevice3](https://github.com/doronz88/pymobiledevice3) for real device debugging due to `ios-deploy` being broken after Xcode 15. Please note that `pymobiledevice3` is currently unstable and should be used for testing purposes only. Special thanks to [@ihomway](https://github.com/ihomway) for their support and contributions in [pull request #14](https://github.com/xinzhengzhang/bis/pull/14).

### 0.3.4
* Revert kotlin support. There are too many problems with the kotlin language server and it cannot be used in production at all, so the implementation method still generates the corresponding gradle template
Expand Down

0 comments on commit 9981dc3

Please sign in to comment.