8000 Tags · mingi3314/PyRb · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: mingi3314/PyRb

Tags

backend@v0.10.9

Toggle backend@v0.10.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
🔖 release version backend@0.10.9 (#138)

### TL;DR
This pull request updates the version of the `pyrb` package from `0.10.8` to `0.10.9`.

### What changed?
- The version number in `pyproject.toml` has been incremented from `0.10.8` to `0.10.9`.

### How to test?
No testing is specifically required, as this change only updates the version number.

### Why make this change?
The version bump likely includes important updates, bug fixes, or new features that justify releasing a new version of the package.

---

frontend@v0.0.2

Toggle frontend@v0.0.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
🔖 release version frontend@0.0.2 (#123)

### TL;DR

This PR updates the version of the front end application from 0.0.1 to 0.0.2.

### What changed?

The `version` in `frontend/package.json` was updated.

### How to test?

Verify the version number in `frontend/package.json` is now 0.0.2.

### Why make this change?

This change was made following standard versioning procedures as the front end application has been updated.

---

backend@v0.10.1

Toggle backend@v0.10.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
🔖 release version 0.10.1 (#115)

backend@v0.10.0

Toggle backend@v0.10.0's commit message
8000

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
🔖 release version 0.10.0 (#113)

### TL;DR

Update the version of PyRB from 0.9.7 to 0.10.0

### What changed?

The version in `pyproject.toml` is updated in this pull request.

### How to test?

Verify the version number in `pyproject.toml` matches with the version specified in this PR.

### Why make this change?

The version bump is likely due to new features, improvements, or bugfixes in the application that warrant a new release.

---

v0.9.7

Toggle v0.9.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
🔖 release version 0.9.7 (#110)

### TL;DR

This change bumps the package version from 0.9.6 to 0.9.7.

### What changed?

The version number in `pyproject.toml` is increased.

### How to test?

After merging the PR, check that the new version is correctly reflected on the package delivery platforms.

### Why make this change?

A new version release is justified by recent changes to our codebase.

---

v0.9.6

Toggle v0.9.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
🔖 release version 0.9.6 (#106)

---

<details open><summary>Generated summary (powered by <a href="https://app.graphite.dev">Graphite</a>)</summary>

> ## TL;DR
> This pull request updates the version of the Python Rebalancer (pyrb) project from 0.9.5 to 0.9.6 in the `pyproject.toml` file.
> 
> ## What changed
> The only change in this pull request is the version number of the project. The version has been incremented from 0.9.5 to 0.9.6.
> 
> ```diff
>  [tool.poetry]
>  name = "pyrb"
> -version = "0.9.5"
> +version = "0.9.6"
>  description = "Python Rebalancer"
>  authors = ["Minki Kim <mingi3314@gmail.com>"]
>  readme = "README.md"
> ```
> 
> ## How to test
> Since this is a simple version update, no specific testing is required. However, you can verify the change by checking the `pyproject.toml` file and confirming that the version number is now 0.9.6.
> 
> ## Why make this change
> This change is necessary to reflect the new version of the project. This could be due to various reasons such as new features, bug fixes, or other improvements in the project. Updating the version number helps in maintaining the version history and tracking changes in the project.
</details>

v0.9.5

Toggle v0.9.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
🗃️ update position data structure (#102)

🗃️ update position data structure

chore: release version 0.9.5

---

<details open><summary>Generated summary (powered by <a href="https://app.graphite.dev">Graphite</a>)</summary>

> ## TL;DR
> This pull request updates the version of the `pyrb` package to `0.9.5`, introduces new asset class enums, refactors the `Position` model to include an `Asset` object, and updates related code to reflect these changes.
> 
> ## What changed
> - Updated the version of the `pyrb` package to `0.9.5` in `pyproject.toml`.
> - Added new asset class enums (`STOCK`, `BOND`, `CASH`, `COMMODITY`, `OTHER`) in `enums.py`.
> - Refactored the `Position` model to include an `Asset` object with `symbol` and `label` fields.
> - Updated code in various files to use the new `Asset` object instead of directly accessing the `symbol` field.
> 
> ## How to test
> 1. Update the `pyrb` package to version `0.9.5`.
> 2. Check the new asset class enums (`STOCK`, `BOND`, `CASH`, `COMMODITY`, `OTHER`) in `enums.py`.
> 3. Verify that the `Position` model now includes an `Asset` object with `symbol` and `label` fields.
> 4. Test related code changes in `controllers/cli/main.py`, `repositories/brokerages/ebest/portfolio.py`, `tests/conftest.py`, and `tests/controllers/test_api.py`.
> 
> ## Why make this change
> - Introduces a more structured approach to handling asset classes in the `pyrb` package.
> - Enhances the readability and maintainability of the code by using an `Asset` object in the `Position` model.
> - Aligns the codebase with best practices for modeling financial assets and positions.
</details>

v0.9.4

Toggle v0.9.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
🔖 release version 0.9.4 (#101)

---

<details open="true"><summary>Generated summary (powered by <a href="https://app.graphite.dev">Graphite</a>)</summary>

> ## TL;DR
> This pull request updates the version of the Python Rebalancer (pyrb) from 0.9.3 to 0.9.4 in the `pyproject.toml` file.
> 
> ## What changed
> The only change in this pull request is the version number of the pyrb package. The version has been incremented from 0.9.3 to 0.9.4.
> 
> ```diff
>  [tool.poetry]
>  name = "pyrb"
> -version = "0.9.3"
> +version = "0.9.4"
>  description = "Python Rebalancer"
>  authors = ["Minki Kim <mingi3314@gmail.com>"]
>  readme = "README.md"
> ```
> 
> ## How to test
> To test this change, you can pull the changes from this branch and check the `pyproject.toml` file. The version of the pyrb package should be 0.9.4.
> 
> ## Why make this change
> This change is necessary to keep the versioning of the pyrb package up to date. This new version may include bug fixes, new features, or other improvements.
</details>

v0.9.3

Toggle v0.9.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
🔖 release version 0.9.3 (#97)

v0.9.2

Toggle v0.9.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
🔖 release version 0.9.2 (#94)

0