# Missing functions in v1

**URL:** https://discourse.julialang.org/t/missing-functions-in-v1/16139
**Category:** General Usage
**Created:** [October 10, 2018, 10:06pm UTC](https://discourse.julialang.org/t/missing-functions-in-v1/16139 "2018-10-10T22:06:01Z")
**Posts on this page:** 9
**Page:** 1

<div class="post-metadata">

### Author: ![asasa](https://avatars.discourse-cdn.com/v4/letter/a/3be4f8/32.png) [@asasa](https://discourse.julialang.org/u/asasa)
#### Post date: [October 10, 2018, 10:06pm UTC](https://discourse.julialang.org/t/missing-functions-in-v1/16139/1 "2018-10-10T22:06:01Z")

</div>

Hello,

I’ve recently installed Julia v1, but I already found some useful functions for me that are missing. These were present in v0.6 but I cannot find these or similar one in v1.  
These functions are  
hex : convert an integer to a hexadecimal string  
Bin : convert an integer to a binary string  
Linerange : create an n element vector from a to b

Could you tell me if these function have just been deleted or are they present in external package from now or will they be reintegrated in a future release?

I find this very strange that these functions are missing and I am afraid that I will find more missing functions in the future…

Thanks in advance

---

<div class="post-metadata">

### Author: ![favba](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/favba/32/2735_2.png) [@favba](https://discourse.julialang.org/u/favba)
#### Post date: [October 10, 2018, 10:12pm UTC](https://discourse.julialang.org/t/missing-functions-in-v1/16139/2 "2018-10-10T22:12:36Z")

</div>

You should use julia v0.7 to update your codes, since it gives deprecation warnings that can clarify what changes are necessary in your code.

---

<div class="post-metadata">

### Author: ![DNF](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/dnf/32/10191_2.png) [@DNF](https://discourse.julialang.org/u/DNF)
#### Post date: [October 10, 2018, 10:17pm UTC](https://discourse.julialang.org/t/missing-functions-in-v1/16139/3 "2018-10-10T22:17:45Z")

</div>

There has never been a function called linerange, by the way. You are perhaps thinking of `linspace`, which is now called `range`.

---

<div class="post-metadata">

### Author: ![tamasgal](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/tamasgal/32/27946_2.png) [@tamasgal](https://discourse.julialang.org/u/tamasgal)
#### Post date: [October 10, 2018, 10:52pm UTC](https://discourse.julialang.org/t/missing-functions-in-v1/16139/4 "2018-10-10T22:52:03Z")

</div>

As others pointed out, using Julia 0.7 will give you all the hints you need.

Nevertheless, here is what happened to `hex`:

```julia
julia> hex(42)
┌ Warning: `hex(n)` is deprecated, use `string(n, base=16)` instead.
│ caller = top-level scope
└ @ Core :0
"2a"

```

and `bin`:

```julia
julia> bin(23)
┌ Warning: `bin(n)` is deprecated, use `string(n, base=2)` instead.
│ caller = top-level scope
└ @ Core :0
"10111"

```

And `linspace` as DNF pointed out is renamed to `range`:

```julia
julia> linspace(5, 23)
┌ Warning: `linspace(start, stop)` is deprecated, use `range(start, stop=stop, length=50)` instead.
│ caller = top-level scope
└ @ Core :0
5.0:0.3673469387755102:23.0

```

---

<div class="post-metadata">

### Author: ![Ajaychat3](https://avatars.discourse-cdn.com/v4/letter/a/ecd19e/32.png) [@Ajaychat3](https://discourse.julialang.org/u/Ajaychat3)
#### Post date: [October 11, 2018, 1:22am UTC](https://discourse.julialang.org/t/missing-functions-in-v1/16139/5 "2018-10-11T01:22:07Z")

</div>

Can we put a running or static banner on the home page of site to guide the user informing them to migrate first to version 0.7 before they proceed to version 1.0.

---

<div class="post-metadata">

### Author: ![DNF](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/dnf/32/10191_2.png) [@DNF](https://discourse.julialang.org/u/DNF)
#### Post date: [October 11, 2018, 5:25am UTC](https://discourse.julialang.org/t/missing-functions-in-v1/16139/6 "2018-10-11T05:25:48Z")

</div>

The download page very strongly pushes v1. 0, and the front page simply says “Download v1. 0” instead of “Downloads”.

At the top of the downloads page, maybe there should be a section called “Which version should I get?”

---

<div class="post-metadata">

### Author: ![StefanKarpinski](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/stefankarpinski/32/24_2.png) [@StefanKarpinski](https://discourse.julialang.org/u/StefanKarpinski)
#### Post date: [October 11, 2018, 5:54am UTC](https://discourse.julialang.org/t/missing-functions-in-v1/16139/7 "2018-10-11T05:54:05Z")

</div>

The silent preponderance of people using Julia are new to it and have no expectations from older versions. We do, however, need to update all the documentation and tutorial material out there.

---

<div class="post-metadata">

### Author: ![Iagoba\_Apellaniz](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/iagoba_apellaniz/32/34406_2.png) [@Iagoba\_Apellaniz](https://discourse.julialang.org/u/Iagoba_Apellaniz)
#### Post date: [October 11, 2018, 6:01am UTC](https://discourse.julialang.org/t/missing-functions-in-v1/16139/8 "2018-10-11T06:01:15Z")

</div>

Can the change-log of v0.7 bee added to the documentation itself? IMHO it would be useful

---

<div class="post-metadata">

### Author: ![asasa](https://avatars.discourse-cdn.com/v4/letter/a/3be4f8/32.png) [@asasa](https://discourse.julialang.org/u/asasa)
#### Post date: [October 11, 2018, 1:31pm UTC](https://discourse.julialang.org/t/missing-functions-in-v1/16139/9 "2018-10-11T13:31:50Z")

</div>

Thanks everybody it is more clear for me.

I’ve installed v0.7 to test these…

Actually, yes, I was thinking about linespace (it was late for me…).
