Conversation
There was a problem hiding this comment.
Pull request overview
This PR bumps the project version from 4.0.0 to 4.1.0, updating version references in the main package configuration files. Additionally, it enhances the README by replacing a simple contribution invitation with a more structured Contributing section that encourages opening issues before submitting PRs.
Changes:
- Version bumped from 4.0.0 to 4.1.0 in pyproject.toml and uv.lock
- Added a formal Contributing section to README.md with guidance to open issues before submitting PRs
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| pyproject.toml | Updated package version from 4.0.0 to 4.1.0 |
| uv.lock | Updated locked package version to match pyproject.toml |
| README.md | Replaced simple contribution invitation with structured Contributing section |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| [project] | ||
| name = "linkedin-scraper-mcp" | ||
| version = "4.0.0" | ||
| version = "4.1.0" |
There was a problem hiding this comment.
The version has been updated to 4.1.0 in pyproject.toml and uv.lock, but other files in the repository still reference version 4.0.0 and need to be updated:
- manifest.json - Contains 3 references to version 4.0.0 (line 5 for the version field, and lines 7 and 29 for Docker image references)
- docker-compose.yml - References the Docker image tag 4.0.0 (line 3)
These files should be updated to maintain version consistency across the codebase.
Merge activity
|
Additional Comments (2)
Prompt To Fix With AIThis is a comment left during a code review.
Path: manifest.json
Line: 3
Comment:
version should be updated to `4.1.0` to match `pyproject.toml`
```suggestion
"version": "4.1.0",
```
How can I resolve this? If you propose a fix, please make it concise.
Prompt To Fix With AIThis is a comment left during a code review.
Path: docker-compose.yml
Line: 4
Comment:
image tag should be updated to `4.1.0` to match the version in `pyproject.toml`
```suggestion
image: stickerdaniel/linkedin-mcp-server:4.1.0
```
How can I resolve this? If you propose a fix, please make it concise. |

Greptile Summary
Version bump from 4.0.0 to 4.1.0 to reflect the new
search_peoplefeature added in PR #157, plus improved contributing guidelines in README.Key changes:
pyproject.tomlanduv.lockIssues found:
manifest.jsonanddocker-compose.ymlstill reference version 4.0.0 and need updating to 4.1.0Confidence Score: 3/5
manifest.jsonanddocker-compose.yml) have inconsistent version numbers that must be corrected before merging.Important Files Changed
Last reviewed commit: a35072a