code-ranker 1.0.0-alpha.5 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![CI](https://github.com/ffedoroff/code-ranker/actions/workflows/ci.yml/badge.svg)](https://github.com/ffedoroff/code-ranker/actions/workflows/ci.yml)
4
4
  [![codecov](https://codecov.io/gh/ffedoroff/code-ranker/branch/main/graph/badge.svg)](https://codecov.io/gh/ffedoroff/code-ranker)
5
- [![dependencies](https://deps.rs/crate/code-ranker/1.0.0-alpha.5/status.svg)](https://deps.rs/crate/code-ranker/1.0.0-alpha.5)
5
+ [![dependencies](https://deps.rs/repo/github/ffedoroff/code-ranker/status.svg)](https://deps.rs/repo/github/ffedoroff/code-ranker)
6
6
  [![Crates.io](https://img.shields.io/crates/v/code-ranker.svg)](https://crates.io/crates/code-ranker)
7
7
  [![npm](https://img.shields.io/npm/v/code-ranker.svg)](https://www.npmjs.com/package/code-ranker)
8
8
  [![PyPI](https://img.shields.io/pypi/v/code-ranker.svg)](https://pypi.org/project/code-ranker/)
@@ -17,7 +17,7 @@ Structural-analysis tool for **Rust, Python, JavaScript and TypeScript** codebas
17
17
  ## Rust quick start
18
18
 
19
19
  ```sh
20
- cargo install code-ranker --version 1.0.0-alpha.5 # install the CLI
20
+ cargo install code-ranker --version 1.0.0 # install the CLI
21
21
  code-ranker report . # make html report in .code-ranker/ folder
22
22
  ```
23
23
 
@@ -96,7 +96,7 @@ curl -fsSL https://github.com/ffedoroff/code-ranker/releases/latest/download/cod
96
96
  powershell -ExecutionPolicy ByPass -c "irm https://github.com/ffedoroff/code-ranker/releases/latest/download/code-ranker-installer.ps1 | iex"
97
97
 
98
98
  # Rust (Cargo)
99
- cargo install code-ranker --version 1.0.0-alpha.5
99
+ cargo install code-ranker --version 1.0.0
100
100
 
101
101
  # Node (npm)
102
102
  npm install -g code-ranker
@@ -105,10 +105,10 @@ npm install -g code-ranker
105
105
  pip install code-ranker
106
106
 
107
107
  # Docker (Docker Hub)
108
- docker pull fedoroff/code-ranker:1.0.0-alpha.5
108
+ docker pull fedoroff/code-ranker:1.0.0
109
109
 
110
110
  # Docker (GHCR — no anonymous rate limits)
111
- docker pull ghcr.io/ffedoroff/code-ranker:1.0.0-alpha.5
111
+ docker pull ghcr.io/ffedoroff/code-ranker:1.0.0
112
112
  ```
113
113
 
114
114
  All channels ship the same `code-ranker` binary built from the same Rust source. Linux (x86_64, aarch64), macOS (x86_64, aarch64), Windows (x86_64).
@@ -143,7 +143,7 @@ Built-in plugins: `rust` (cargo + syn), `python`, `javascript` (also handles Typ
143
143
  ## Try it now
144
144
 
145
145
  ```sh
146
- cargo install code-ranker --version 1.0.0-alpha.5 && code-ranker report . && open .code-ranker/
146
+ cargo install code-ranker --version 1.0.0 && code-ranker report . && open .code-ranker/
147
147
  ```
148
148
 
149
149
  One command on any Rust project — you'll have an interactive structural map and an AI-ready shortlist in seconds. ⭐ the repo if it helps.
@@ -19,7 +19,7 @@
19
19
  "hasInstallScript": true,
20
20
  "license": "Apache-2.0",
21
21
  "name": "code-ranker",
22
- "version": "1.0.0-alpha.5"
22
+ "version": "1.0.0"
23
23
  },
24
24
  "node_modules/detect-libc": {
25
25
  "engines": {
@@ -48,5 +48,5 @@
48
48
  }
49
49
  },
50
50
  "requires": true,
51
- "version": "1.0.0-alpha.5"
51
+ "version": "1.0.0"
52
52
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "artifactDownloadUrls": [
3
- "https://github.com/ffedoroff/code-ranker/releases/download/v1.0.0-alpha.5"
3
+ "https://github.com/ffedoroff/code-ranker/releases/download/v1.0.0"
4
4
  ],
5
5
  "bin": {
6
6
  "code-ranker": "run-code-ranker.js"
@@ -89,7 +89,7 @@
89
89
  "zipExt": ".tar.xz"
90
90
  }
91
91
  },
92
- "version": "1.0.0-alpha.5",
92
+ "version": "1.0.0",
93
93
  "volta": {
94
94
  "node": "18.14.1",
95
95
  "npm": "9.5.0"