Skip to content

Latest commit

 

History

History
73 lines (58 loc) · 1.32 KB

MIGRATION.md

File metadata and controls

73 lines (58 loc) · 1.32 KB

v2.0.0

v2.0.0 of profile_stack is a 100% rewrite in rust. Because it is written in rust the run time has been reduced from ~40+ seconds to ~10 seconds. There are a few things that have changed:

url is now required

Before

- name: Golang
  logo: go
  url: https://golang.org/
  color: '#7FD6EA'
  projects:
    - https://github.com/gleich/fgh
    - https://github.com/gleich/gh_fsync

After

- name: Golang
  logo: go
  url: https://golang.org/
  color: '#7FD6EA'
  projects:
    - url: https://github.com/gleich/fgh
    - url: https://github.com/gleich/gh_fsync

Difference

-   - https://github.com/gleich/fgh
+   - url: https://github.com/gleich/fgh
-   - https://github.com/gleich/gh_fsync
+   - url: https://github.com/gleich/gh_fsync

logoColor is now logo_color

Before

- name: Golang
  logo: go
  logoColor: '#000000'
  url: https://golang.org/
  color: '#7FD6EA'
  projects:
    - url: https://github.com/gleich/fgh
    - url: https://github.com/gleich/gh_fsync

After

- name: Golang
  logo: go
  logo_color: '#000000'
  url: https://golang.org/
  color: '#7FD6EA'
  projects:
    - url: https://github.com/gleich/fgh
    - url: https://github.com/gleich/gh_fsync

Difference

- logoColor: '#000000'
+ logo_color: '#000000'