Skip to content

Commit

Permalink
Formalize code freeze (#6600)
Browse files Browse the repository at this point in the history
  • Loading branch information
IGI-111 authored Oct 1, 2024
1 parent 069ae4a commit d399580
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 32 deletions.
61 changes: 31 additions & 30 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,36 +1,37 @@
# Everything else
* @FuelLabs/leads
* @Voxelot @mchristopher @luizstacio
# # Everything else
# * @FuelLabs/leads

# Documentation
/docs/ @FuelLabs/tooling @FuelLabs/sway-compiler @FuelLabs/swayex @FuelLabs/Devrel
# # Documentation
# /docs/ @FuelLabs/tooling @FuelLabs/sway-compiler @FuelLabs/swayex @FuelLabs/Devrel

# Sway files and standard library
/examples/ @FuelLabs/sway-compiler @FuelLabs/swayex
/sway-lib-core/ @FuelLabs/sway-compiler @FuelLabs/swayex
/sway-lib-std/ @FuelLabs/sway-compiler @FuelLabs/swayex
# # Sway files and standard library
# /examples/ @FuelLabs/sway-compiler @FuelLabs/swayex
# /sway-lib-core/ @FuelLabs/sway-compiler @FuelLabs/swayex
# /sway-lib-std/ @FuelLabs/sway-compiler @FuelLabs/swayex

# Tooling
/forc/ @FuelLabs/tooling
/forc-pkg/ @FuelLabs/tooling
/forc-plugins/ @FuelLabs/tooling
/forc-test/ @FuelLabs/tooling
/forc-tracing/ @FuelLabs/tooling
/forc-util/ @FuelLabs/tooling
/sway-lsp/ @FuelLabs/tooling
/swayfmt/ @FuelLabs/tooling
# # Tooling
# /forc/ @FuelLabs/tooling
# /forc-pkg/ @FuelLabs/tooling
# /forc-plugins/ @FuelLabs/tooling
# /forc-test/ @FuelLabs/tooling
# /forc-tracing/ @FuelLabs/tooling
# /forc-util/ @FuelLabs/tooling
# /sway-lsp/ @FuelLabs/tooling
# /swayfmt/ @FuelLabs/tooling

# Compiler
/sway-ast/ @FuelLabs/sway-compiler
/sway-core/ @FuelLabs/sway-compiler
/sway-error/ @FuelLabs/sway-compiler
/sway-ir/ @FuelLabs/sway-compiler
/sway-parse/ @FuelLabs/sway-compiler
/sway-types/ @FuelLabs/sway-compiler
/sway-utils/ @FuelLabs/sway-compiler
/templates/ @FuelLabs/sway-compiler
/test/ @FuelLabs/sway-compiler
# # Compiler
# /sway-ast/ @FuelLabs/sway-compiler
# /sway-core/ @FuelLabs/sway-compiler
# /sway-error/ @FuelLabs/sway-compiler
# /sway-ir/ @FuelLabs/sway-compiler
# /sway-parse/ @FuelLabs/sway-compiler
# /sway-types/ @FuelLabs/sway-compiler
# /sway-utils/ @FuelLabs/sway-compiler
# /templates/ @FuelLabs/sway-compiler
# /test/ @FuelLabs/sway-compiler

# Root lockfile and deployment scripts
Cargo.lock @FuelLabs/leads
/deployment/ @FuelLabs/leads
# # Root lockfile and deployment scripts
# Cargo.lock @FuelLabs/leads
# /deployment/ @FuelLabs/leads

4 changes: 2 additions & 2 deletions sway-lsp/tests/integration/lsp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -640,8 +640,8 @@ pub(crate) async fn rename_request<'a>(
new_name: rename.new_name.to_string(),
work_done_progress_params: Default::default(),
};
let worspace_edit = request::handle_rename(server, params).await.unwrap();
worspace_edit.unwrap()
let workspace_edit = request::handle_rename(server, params).await.unwrap();
workspace_edit.unwrap()
}

pub fn create_did_change_params(
Expand Down

0 comments on commit d399580

Please sign in to comment.