diff --git a/README.md b/README.md
index 263cf917..b08f9a68 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,11 @@
Display icons for filenames in  buffers!
-
+
# Preview

@@ -14,14 +18,13 @@ Display icons for filenames in  buffers!

# Installation
+You can install this package from [MELPA](https://melpa.org/#/magit-file-icons).
-This package is not yet in any package archives. To install, you need to fetch the source.
-
-For example, with [straight.el](https://github.com/radian-software/straight.el):
+For example, with `use-package`:
```elisp
(use-package magit-file-icons
- :straight (:host github :repo "gekoke/magit-file-icons")
+ :ensure t
:custom
;; These are the default values:
(magit-file-icons-enable-diff-file-section-icons t)
diff --git a/magit-file-icons.el b/magit-file-icons.el
index 5f05c5b2..3f284e26 100644
--- a/magit-file-icons.el
+++ b/magit-file-icons.el
@@ -6,7 +6,7 @@
;; Created: 14 May 2024
;; URL: https://github.com/gekoke/magit-file-icons
-;; Package-Version: 0.2.5
+;; Package-Version: 1.0.0
;; Package-Requires: ((emacs "24.3") (magit "3.3.0") (nerd-icons "0.1.0") (el-patch "3.1"))
;; This program is free software; you can redistribute it and/or modify
diff --git a/nix/packages.nix b/nix/packages.nix
index c741006d..f4488283 100644
--- a/nix/packages.nix
+++ b/nix/packages.nix
@@ -7,7 +7,7 @@ _: {
magit-file-icons = pkgs.emacsPackages.trivialBuild rec {
pname = "magit-file-icons";
- version = "v0.2.5";
+ version = "v1.0.0";
src = ../.;