Skip to content

Commit da9320b

Browse files
committed
fix: update GitHub username from lucasallan to lucasamorimca
Rename CodeQL pack scope and bump versions to 0.1.0 for republish under the new identity.
1 parent ac5c50c commit da9320b

6 files changed

Lines changed: 18 additions & 16 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ resolver = "2"
66
edition = "2021"
77
rust-version = "1.70"
88
license = "Apache-2.0"
9-
repository = "https://github.com/lucasallan/codeql-solidity"
9+
repository = "https://github.com/lucasamorimca/codeql-solidity"

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# CodeQL Solidity
22

3-
[![Test](https://github.com/lucasallan/codeql-solidity/actions/workflows/test.yml/badge.svg)](https://github.com/lucasallan/codeql-solidity/actions/workflows/test.yml)
4-
[![Release](https://github.com/lucasallan/codeql-solidity/actions/workflows/release.yml/badge.svg)](https://github.com/lucasallan/codeql-solidity/releases)
3+
[![Test](https://github.com/lucasamorimca/codeql-solidity/actions/workflows/test.yml/badge.svg)](https://github.com/lucasamorimca/codeql-solidity/actions/workflows/test.yml)
4+
[![Release](https://github.com/lucasamorimca/codeql-solidity/actions/workflows/release.yml/badge.svg)](https://github.com/lucasamorimca/codeql-solidity/releases)
55
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)
66

77
CodeQL extractor and queries for Solidity smart contract security analysis.
@@ -17,13 +17,13 @@ CodeQL extractor and queries for Solidity smart contract security analysis.
1717
### Download CodeQL Packs
1818

1919
```bash
20-
codeql pack download lucasallan/solidity-all
21-
codeql pack download lucasallan/solidity-queries
20+
codeql pack download lucasamorimca/solidity-all
21+
codeql pack download lucasamorimca/solidity-queries
2222
```
2323

2424
### Download Extractor
2525

26-
Download from [Releases](https://github.com/lucasallan/codeql-solidity/releases)
26+
Download from [Releases](https://github.com/lucasamorimca/codeql-solidity/releases)
2727

2828
## Usage
2929

@@ -33,16 +33,16 @@ export CODEQL_EXTRACTOR_SOLIDITY_ROOT=/path/to/extractor-pack
3333
codeql database create db --language=solidity --source-root=/path/to/contracts
3434

3535
# Run analysis
36-
codeql database analyze db lucasallan/solidity-queries --format=sarif-latest --output=results.sarif
36+
codeql database analyze db lucasamorimca/solidity-queries --format=sarif-latest --output=results.sarif
3737
```
3838

3939
## Project Structure
4040

4141
```
4242
codeql-solidity/
4343
├── extractor/ # Rust extractor binary
44-
├── ql/lib/ # QL library (lucasallan/solidity-all)
45-
├── queries/ # Security queries (lucasallan/solidity-queries)
44+
├── ql/lib/ # QL library (lucasamorimca/solidity-all)
45+
├── queries/ # Security queries (lucasamorimca/solidity-queries)
4646
├── extractor-pack/ # CodeQL extractor configuration
4747
└── tests/ # Test fixtures
4848
```

extractor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
rust-version = "1.82"
66
description = "CodeQL extractor for Solidity smart contracts"
77
license = "Apache-2.0"
8-
repository = "https://github.com/lucasallan/codeql-solidity"
8+
repository = "https://github.com/lucasamorimca/codeql-solidity"
99
authors = ["Lucas Amorim"]
1010

1111
[[bin]]

ql/lib/qlpack.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: lucasallan/solidity-all
2-
version: 0.0.1
1+
name: lucasamorimca/solidity-all
2+
version: 0.1.0
33
library: true
44
extractor: solidity
55
dbscheme: solidity.dbscheme

queries/codeql-pack.lock.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
---
22
lockVersion: 1.0.0
3-
dependencies: {}
3+
dependencies:
4+
lucasamorimca/solidity-all:
5+
version: 0.1.0
46
compiled: false

queries/qlpack.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
name: lucasallan/solidity-queries
2-
version: 0.0.1
1+
name: lucasamorimca/solidity-queries
2+
version: 0.1.0
33
library: false
44
dependencies:
5-
lucasallan/solidity-all: "*"
5+
lucasamorimca/solidity-all: "*"
66
groups:
77
- solidity

0 commit comments

Comments
 (0)